diff options
author | /dev/humancontroller <devhc@example.com> | 2013-04-14 18:33:26 +0200 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-05-31 23:10:58 +0100 |
commit | 386b7b9ffe6238d5107bbaeec34663248a6aa848 (patch) | |
tree | eadcfb05fb43cba66574fe00fcd54c8161dbf069 /src/qcommon | |
parent | 83b6cff2d632f941389998bdbb95df9bb76bcf9d (diff) |
drop some useless return statements
Diffstat (limited to 'src/qcommon')
-rw-r--r-- | src/qcommon/common.c | 2 | ||||
-rw-r--r-- | src/qcommon/files.c | 1 | ||||
-rw-r--r-- | src/qcommon/vm_powerpc.c | 2 |
3 files changed, 0 insertions, 5 deletions
diff --git a/src/qcommon/common.c b/src/qcommon/common.c index 2b92bbd1..edfca8c9 100644 --- a/src/qcommon/common.c +++ b/src/qcommon/common.c @@ -1407,8 +1407,6 @@ void Com_InitSmallZoneMemory( void ) { Com_Error( ERR_FATAL, "Small zone data failed to allocate %1.1f megs", (float)s_smallZoneTotal / (1024*1024) ); } Z_ClearZone( smallzone, s_smallZoneTotal ); - - return; } void Com_InitZoneMemory( void ) { diff --git a/src/qcommon/files.c b/src/qcommon/files.c index dc77fa53..c8266fb0 100644 --- a/src/qcommon/files.c +++ b/src/qcommon/files.c @@ -2772,7 +2772,6 @@ void FS_Which_f( void ) { } Com_Printf("File not found: \"%s\"\n", filename); - return; } diff --git a/src/qcommon/vm_powerpc.c b/src/qcommon/vm_powerpc.c index cf7de30f..02c2d2ee 100644 --- a/src/qcommon/vm_powerpc.c +++ b/src/qcommon/vm_powerpc.c @@ -1962,8 +1962,6 @@ PPC_ComputeCode( vm_t *vm ) di_now = di_first; } } - - return; } static void |