diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-09 02:07:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-09 02:07:50 +0300 |
commit | 0cec4fa69c575f69015f37686f1e010d09f2ec48 (patch) | |
tree | 3ee7de7a6e19f3bc952bd9da5d4aaf274a37795d /src/utils | |
parent | a85d7ad79ce803adc3469a618bfd8dfe188f2cbf (diff) | |
download | plus-0cec4fa69c575f69015f37686f1e010d09f2ec48.tar.gz plus-0cec4fa69c575f69015f37686f1e010d09f2ec48.tar.bz2 plus-0cec4fa69c575f69015f37686f1e010d09f2ec48.tar.xz plus-0cec4fa69c575f69015f37686f1e010d09f2ec48.zip |
fix code style.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/physfsrwops.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils/physfsrwops.cpp b/src/utils/physfsrwops.cpp index bc1a571e2..fdf9bc957 100644 --- a/src/utils/physfsrwops.cpp +++ b/src/utils/physfsrwops.cpp @@ -128,7 +128,8 @@ static int physfsrwops_write(SDL_RWops *rw, const void *ptr, int size, int num) static int physfsrwops_close(SDL_RWops *rw) { - PHYSFS_file *const handle = static_cast<PHYSFS_file*>(rw->hidden.unknown.data1); + PHYSFS_file *const handle = static_cast<PHYSFS_file*>( + rw->hidden.unknown.data1); if (!PHYSFS_close(handle)) { SDL_SetError("PhysicsFS error: %s", PHYSFS_getLastError()); |