diff options
Diffstat (limited to 'test/testaudiohotplug.c')
-rw-r--r-- | test/testaudiohotplug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/testaudiohotplug.c b/test/testaudiohotplug.c index af0ecb50a5..f8c46856f4 100644 --- a/test/testaudiohotplug.c +++ b/test/testaudiohotplug.c @@ -122,8 +122,8 @@ main(int argc, char *argv[]) int i; char filename[4096]; - /* Enable standard application logging */ - SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO); + /* Enable standard application logging */ + SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO); /* Load the SDL library */ if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0) { @@ -160,7 +160,7 @@ main(int argc, char *argv[]) /* Show the list of available drivers */ SDL_Log("Available audio drivers:"); for (i = 0; i < SDL_GetNumAudioDrivers(); ++i) { - SDL_Log("%i: %s", i, SDL_GetAudioDriver(i)); + SDL_Log("%i: %s", i, SDL_GetAudioDriver(i)); } SDL_Log("Using audio driver: %s\n", SDL_GetCurrentAudioDriver()); |