diff options
author | Glenn Maynard | 2003-09-29 00:14:13 +0000 |
---|---|---|
committer | Michael Niedermayer | 2003-09-29 00:14:13 +0000 |
commit | 05ab0b76b701bc3f200571f2f3f266d11fbd3253 (patch) | |
tree | 0fc08e40ba8dd18660e2dc5bf00834b8c09e9528 /ffplay.c | |
parent | fe0f2a9719838cef7fb740763e5c9c344071d47d (diff) |
Trivial error reporting patch by (Glenn Maynard <g_sf at zewt dot org>)
Originally committed as revision 2316 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1715,7 +1715,7 @@ int main(int argc, char **argv) flags |= SDL_INIT_EVENTTHREAD; /* Not supported on win32 */ #endif if (SDL_Init (flags)) { - fprintf(stderr, "Could not initialize SDL - exiting\n"); + fprintf(stderr, "Could not initialize SDL - %s\n", SDL_GetError()); exit(1); } |