diff options
| author | Peter D'Hoye <peter.dhoye@gmail.com> | 2007-09-10 21:18:19 +0000 |
|---|---|---|
| committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2007-09-10 21:18:19 +0000 |
| commit | 3afaec3ead7503e2904cb1b2b676bed2b3d09907 (patch) | |
| tree | 1cf3d835ac1cf10c3de06b7606f8cf6298ab02d4 | |
| parent | d727f5d9360996334a3f335857c869fe49a7dfd2 (diff) | |
| download | rockbox-3afaec3ead7503e2904cb1b2b676bed2b3d09907.zip rockbox-3afaec3ead7503e2904cb1b2b676bed2b3d09907.tar.gz rockbox-3afaec3ead7503e2904cb1b2b676bed2b3d09907.tar.bz2 rockbox-3afaec3ead7503e2904cb1b2b676bed2b3d09907.tar.xz | |
Accept FS #7750: simulator: add missing newlines after SDL errors
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14666 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | docs/CREDITS | 1 | ||||
| -rw-r--r-- | uisimulator/sdl/uisdl.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/docs/CREDITS b/docs/CREDITS index c092eab..c6af7ff 100644 --- a/docs/CREDITS +++ b/docs/CREDITS @@ -329,6 +329,7 @@ Jesse Lockwood Jonathan Backer Sofian Babai Costas Calamvokis +Catalin Patulea The libmad team The wavpack team The ffmpeg team diff --git a/uisimulator/sdl/uisdl.c b/uisimulator/sdl/uisdl.c index eada01f..d7845c5 100644 --- a/uisimulator/sdl/uisdl.c +++ b/uisimulator/sdl/uisdl.c @@ -112,7 +112,7 @@ bool gui_startup(void) int width, height; if (SDL_Init(SDL_INIT_VIDEO|SDL_INIT_AUDIO|SDL_INIT_TIMER)) { - fprintf(stderr, "fatal: %s", SDL_GetError()); + fprintf(stderr, "fatal: %s\n", SDL_GetError()); return false; } @@ -123,7 +123,7 @@ bool gui_startup(void) picture_surface = SDL_LoadBMP("UI256.bmp"); if (picture_surface == NULL) { background = false; - fprintf(stderr, "warn: %s", SDL_GetError()); + fprintf(stderr, "warn: %s\n", SDL_GetError()); } } |