Mercurial > sdl-ios-xcode
diff src/audio/SDL_audiodev.c @ 2060:866052b01ee5
indent is evil
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 28 Oct 2006 16:48:03 +0000 |
parents | 5f6550e5184f |
children | 771bd3389e3a |
line wrap: on
line diff
--- a/src/audio/SDL_audiodev.c Sat Oct 28 16:41:54 2006 +0000 +++ b/src/audio/SDL_audiodev.c Sat Oct 28 16:48:03 2006 +0000 @@ -47,14 +47,15 @@ #endif static inline void -test_device(const char *fname, int flags, int (*test)(int fd), +test_device(const char *fname, int flags, int (*test) (int fd), char ***devices, int *devCount) { struct stat sb; - if ( (stat(fname, &sb) == 0) && (S_ISCHR(sb.st_mode)) ) { + if ((stat(fname, &sb) == 0) && (S_ISCHR(sb.st_mode))) { int audio_fd = open(fname, flags, 0); - if ( (audio_fd >= 0) && (test(audio_fd)) ) { - void *p = SDL_realloc(*devices, ((*devCount)+1) * sizeof (char *)); + if ((audio_fd >= 0) && (test(audio_fd))) { + void *p = + SDL_realloc(*devices, ((*devCount) + 1) * sizeof(char *)); if (p != NULL) { size_t len = strlen(fname) + 1; char *str = (char *) SDL_malloc(len); @@ -75,7 +76,7 @@ int i = *devCount; if ((i > 0) && (*devices != NULL)) { while (i--) { - SDL_free( (*devices)[*devCount] ); + SDL_free((*devices)[*devCount]); } } @@ -94,7 +95,7 @@ } void -SDL_EnumUnixAudioDevices(int flags, int classic, int (*test)(int fd), +SDL_EnumUnixAudioDevices(int flags, int classic, int (*test) (int fd), char ***devices, int *devCount) { const char *audiodev;