This is an automated email from the git hooks/post-receive script. smcv pushed a commit to annotated tag 1.42d in repository iortcw.
commit 3fc48281a50f3249876d0488cbbda4781bcc78b5 Author: [email protected] <[email protected]@e65d2741-a53d-b2dc-ae96-bb75fa5e4c4a> Date: Fri Sep 12 00:54:30 2014 +0000 SP: Use correct function return type for FS_ReadFile in splines.cpp --- SP/code/splines/splines.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SP/code/splines/splines.cpp b/SP/code/splines/splines.cpp index 52fde71..8fac965 100644 --- a/SP/code/splines/splines.cpp +++ b/SP/code/splines/splines.cpp @@ -30,8 +30,8 @@ If you have questions concerning this license or the applicable additional terms #include "splines.h" extern "C" { -int FS_Write( const void *buffer, int len, fileHandle_t h ); -int FS_ReadFile( const char *qpath, void **buffer ); +int FS_Write( const void *buffer, int len, fileHandle_t f ); +long FS_ReadFile( const char *qpath, void **buffer ); void FS_FreeFile( void *buffer ); fileHandle_t FS_FOpenFileWrite( const char *filename ); void FS_FCloseFile( fileHandle_t f ); -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/iortcw.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

