Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
indent
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jul 11, 2007
1 parent 084238e commit d78785a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/file/SDL_rwops.c
Expand Up @@ -59,7 +59,7 @@ win32_file_open(SDL_RWops * context, const char *filename, const char *mode)
if (!context)
return -1; /* failed (invalid call) */

context->hidden.win32io.h = INVALID_HANDLE_VALUE; /* mark this as unusable */
context->hidden.win32io.h = INVALID_HANDLE_VALUE; /* mark this as unusable */
context->hidden.win32io.buffer.data = NULL;
context->hidden.win32io.buffer.size = 0;
context->hidden.win32io.buffer.left = 0;
Expand All @@ -82,12 +82,12 @@ win32_file_open(SDL_RWops * context, const char *filename, const char *mode)
if (!r_right && !w_right) /* inconsistent mode */
return -1; /* failed (invalid call) */

context->hidden.win32io.buffer.data = (char *)SDL_malloc(READAHEAD_BUFFER_SIZE);
context->hidden.win32io.buffer.data =
(char *) SDL_malloc(READAHEAD_BUFFER_SIZE);
if (!context->hidden.win32io.buffer.data) {
SDL_OutOfMemory();
return -1;
}

#ifdef _WIN32_WCE
{
size_t size = SDL_strlen(filename) + 1;
Expand Down
1 change: 0 additions & 1 deletion src/video/SDL_yuv_mmx.c
Expand Up @@ -435,4 +435,3 @@ void Color565DitherYV12MMX1X( int *colortab, Uint32 *rgb_2_pix,
#endif /* GCC3 i386 inline assembly */

/* vi: set ts=4 sw=4 expandtab: */

0 comments on commit d78785a

Please sign in to comment.