diff options
author | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-12-30 12:32:54 +0000 |
---|---|---|
committer | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-12-30 12:32:54 +0000 |
commit | f0fc390a026dfff392ba465b76f60f3f0e5a70e2 (patch) | |
tree | add91b1a36f3c11bf1b5b6a5fd5aea145c1fef52 /code/unix | |
parent | ca2cf9c99df7ee76f13b7c9fa2d6ad706a3968fa (diff) | |
download | ioquake3-aero-f0fc390a026dfff392ba465b76f60f3f0e5a70e2.tar.gz ioquake3-aero-f0fc390a026dfff392ba465b76f60f3f0e5a70e2.zip |
- tag more functions with gnu format attribute
- fix format string bugs. still some left
git-svn-id: svn://svn.icculus.org/quake3/trunk@1023 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/unix')
-rw-r--r-- | code/unix/sdl_snd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/unix/sdl_snd.c b/code/unix/sdl_snd.c index 20d4bfd..e15ec02 100644 --- a/code/unix/sdl_snd.c +++ b/code/unix/sdl_snd.c @@ -186,7 +186,7 @@ static void print_audiospec(const char *str, const SDL_AudioSpec *spec) if( fmt ) { Com_Printf( " Format: %s\n", fmt ); } else { - Com_Printf( " Format: " S_COLOR_RED "UNKNOWN\n", fmt ); + Com_Printf( " Format: " S_COLOR_RED "UNKNOWN\n"); } Com_Printf( " Freq: %d\n", (int) spec->freq ); |