Mercurial > sdl-ios-xcode
diff src/audio/disk/SDL_diskaudio.c @ 2060:866052b01ee5
indent is evil
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 28 Oct 2006 16:48:03 +0000 |
parents | 5f6550e5184f |
children | 99210400e8b9 |
line wrap: on
line diff
--- a/src/audio/disk/SDL_diskaudio.c Sat Oct 28 16:41:54 2006 +0000 +++ b/src/audio/disk/SDL_diskaudio.c Sat Oct 28 16:48:03 2006 +0000 @@ -112,12 +112,12 @@ const char *fname = DISKAUD_GetOutputFilename(devname); this->hidden = (struct SDL_PrivateAudioData *) - SDL_malloc(sizeof (*this->hidden)); + SDL_malloc(sizeof(*this->hidden)); if (this->hidden == NULL) { SDL_OutOfMemory(); return 0; } - SDL_memset(this->hidden, 0, sizeof (*this->hidden)); + SDL_memset(this->hidden, 0, sizeof(*this->hidden)); /* Open the audio device */ this->hidden->output = SDL_RWFromFile(fname, "wb"); @@ -149,7 +149,7 @@ } static int -DISKAUD_Init(SDL_AudioDriverImpl *impl) +DISKAUD_Init(SDL_AudioDriverImpl * impl) { /* Set the function pointers */ impl->OpenDevice = DISKAUD_OpenDevice;