From 386b7b9ffe6238d5107bbaeec34663248a6aa848 Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Sun, 14 Apr 2013 18:33:26 +0200 Subject: drop some useless return statements --- src/qcommon/common.c | 2 -- src/qcommon/files.c | 1 - src/qcommon/vm_powerpc.c | 2 -- 3 files changed, 5 deletions(-) (limited to 'src/qcommon') 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 -- cgit