From 78e9b8635eb6854cf7f0c21bf1cad5bd3308d4f2 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 3 Jul 2007 09:55:29 +0000 Subject: [PATCH] stupid indent --- src/audio/SDL_audio.c | 2 +- src/audio/arts/SDL_artsaudio.c | 27 +++++++++++++++------------ src/video/SDL_blit_A.c | 6 +++--- src/video/win32/SDL_win32events.c | 2 +- 4 files changed, 20 insertions(+), 17 deletions(-) diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c index d4236ec26..0ac5e58f6 100644 --- a/src/audio/SDL_audio.c +++ b/src/audio/SDL_audio.c @@ -555,7 +555,7 @@ prepare_audiospec(const SDL_AudioSpec * orig, SDL_AudioSpec * prepared) switch (orig->channels) { case 0:{ const char *env = SDL_getenv("SDL_AUDIO_CHANNELS"); - if ((!env) || ((prepared->channels = (Uint8)SDL_atoi(env)) == 0)) { + if ((!env) || ((prepared->channels = (Uint8) SDL_atoi(env)) == 0)) { prepared->channels = 2; /* a reasonable default */ } break; diff --git a/src/audio/arts/SDL_artsaudio.c b/src/audio/arts/SDL_artsaudio.c index 26e68de28..3a14f45fc 100644 --- a/src/audio/arts/SDL_artsaudio.c +++ b/src/audio/arts/SDL_artsaudio.c @@ -57,7 +57,7 @@ static int (*SDL_NAME(arts_stream_get)) (arts_stream_t s, static int (*SDL_NAME(arts_write)) (arts_stream_t s, const void *buffer, int count); static void (*SDL_NAME(arts_close_stream)) (arts_stream_t s); -static int (*SDL_NAME(arts_suspended))(void); +static int (*SDL_NAME(arts_suspended)) (void); static const char *(*SDL_NAME(arts_error_text)) (int errorcode); #define SDL_ARTS_SYM(x) { #x, (void **) (char *) &SDL_NAME(x) } @@ -66,16 +66,19 @@ static struct const char *name; void **func; } arts_functions[] = { -SDL_ARTS_SYM(arts_init), - SDL_ARTS_SYM(arts_free), - SDL_ARTS_SYM(arts_play_stream), - SDL_ARTS_SYM(arts_stream_set), - SDL_ARTS_SYM(arts_stream_get), - SDL_ARTS_SYM(arts_write), - SDL_ARTS_SYM(arts_close_stream), - SDL_ARTS_SYM(arts_suspended), - SDL_ARTS_SYM(arts_error_text), +/* *INDENT-OFF* */ + SDL_ARTS_SYM(arts_init), + SDL_ARTS_SYM(arts_free), + SDL_ARTS_SYM(arts_play_stream), + SDL_ARTS_SYM(arts_stream_set), + SDL_ARTS_SYM(arts_stream_get), + SDL_ARTS_SYM(arts_write), + SDL_ARTS_SYM(arts_close_stream), + SDL_ARTS_SYM(arts_suspended), + SDL_ARTS_SYM(arts_error_text), +/* *INDENT-ON* */ }; + #undef SDL_ARTS_SYM static void @@ -263,7 +266,7 @@ ARTS_OpenDevice(_THIS, const char *devname, int iscapture) return 0; } - if ( ! SDL_NAME(arts_suspended)() ) { + if (!SDL_NAME(arts_suspended) ()) { ARTS_CloseDevice(this); SDL_SetError("ARTS can not open audio device"); return 0; @@ -339,7 +342,7 @@ ARTS_Init(SDL_AudioDriverImpl * impl) } /* Play a stream so aRts doesn't crash */ - if ( SDL_NAME(arts_suspended)() ) { + if (SDL_NAME(arts_suspended) ()) { arts_stream_t stream; stream = SDL_NAME(arts_play_stream) (44100, 16, 2, "SDL"); SDL_NAME(arts_write) (stream, "", 0); diff --git a/src/video/SDL_blit_A.c b/src/video/SDL_blit_A.c index bced907cd..b5886f6f3 100644 --- a/src/video/SDL_blit_A.c +++ b/src/video/SDL_blit_A.c @@ -35,12 +35,12 @@ # define MMX_ASMBLIT 1 # define GCC_ASMBLIT 1 # elif defined(_MSC_VER) && defined(_M_IX86) -# if (_MSC_VER <= 1200) -# include +# if (_MSC_VER <= 1200) +# include # if defined(_mm_free) # define HAVE_MMINTRIN_H 1 # endif -# else /* Visual Studio > VC6 always has mmintrin.h */ +# else /* Visual Studio > VC6 always has mmintrin.h */ # define HAVE_MMINTRIN_H 1 # endif # if HAVE_MMINTRIN_H diff --git a/src/video/win32/SDL_win32events.c b/src/video/win32/SDL_win32events.c index a5d8b7689..05d32fbdd 100644 --- a/src/video/win32/SDL_win32events.c +++ b/src/video/win32/SDL_win32events.c @@ -634,7 +634,7 @@ WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) * DefWindowProc to process it. */ if (xbuttonval > 0) { - return(TRUE); + return (TRUE); } } return (0);