Better compiler warning fix for gcc2.

This commit is contained in:
Ryan C. Gordon 2012-12-28 20:01:41 -05:00
parent cfbe53d1df
commit da7983235f

View file

@ -53,7 +53,11 @@ typedef struct SDLTest_SurfaceImage_s {
int width;
int height;
unsigned int bytes_per_pixel; /* 3:RGB, 4:RGBA */
#if (defined(__GNUC__) && (__GNUC__ <= 2))
unsigned char pixel_data[0];
#else
unsigned char pixel_data[];
#endif
} SDLTest_SurfaceImage_t;
/* Test images */