From c221c1ae7dc639c18c840699e5bc2a611ed7ab79 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 1 Sep 2002 00:38:49 +0000 Subject: [PATCH] *** empty log message *** --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40483 --- test/testvidinfo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/testvidinfo.c b/test/testvidinfo.c index 443f689c2..37afdf366 100644 --- a/test/testvidinfo.c +++ b/test/testvidinfo.c @@ -119,7 +119,7 @@ int RunModeTests(SDL_Surface *screen) bmp = SDL_LoadBMP("sample.bmp"); if ( ! bmp ) { printf("Couldn't load sample.bmp: %s\n", SDL_GetError()); - return; + return 0; } printf("Running freshly loaded blit test: %dx%d at %d bpp, flags: ", bmp->w, bmp->h, bmp->format->BitsPerPixel); @@ -140,7 +140,7 @@ int RunModeTests(SDL_Surface *screen) SDL_FreeSurface(tmp); if ( ! bmp ) { printf("Couldn't convert sample.bmp: %s\n", SDL_GetError()); - return; + return 0; } printf("Running display format blit test: %dx%d at %d bpp, flags: ", bmp->w, bmp->h, bmp->format->BitsPerPixel);