Skip to content

Commit

Permalink
* Fix various warnings with GCC and clang
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.icculus.org/quake3/trunk@2188 edf5b092-35ff-0310-97b2-ce42778d08ea
  • Loading branch information
tma committed Oct 27, 2011
1 parent b533105 commit ebe469f
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 22 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ ifneq (,$(findstring "$(PLATFORM)", "linux" "gnu_kfreebsd" "kfreebsd-gnu"))
endif

BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes \
-Wno-self-assign -pipe -DUSE_ICON
-pipe -DUSE_ICON
CLIENT_CFLAGS += $(SDL_CFLAGS)

OPTIMIZEVM = -O3 -funroll-loops -fomit-frame-pointer
Expand Down Expand Up @@ -902,6 +902,10 @@ else
RENDERER_LIBS += -ljpeg
endif

ifeq ("$(CC)", $(findstring "$(CC)", "clang" "clang++"))
BASE_CFLAGS += -Qunused-arguments
endif

ifdef DEFAULT_BASEDIR
BASE_CFLAGS += -DDEFAULT_BASEDIR=\\\"$(DEFAULT_BASEDIR)\\\"
endif
Expand Down
4 changes: 1 addition & 3 deletions code/cgame/cg_view.c
Original file line number Diff line number Diff line change
Expand Up @@ -506,9 +506,7 @@ static int CG_CalcFov( void ) {
}
} else {
f = ( cg.time - cg.zoomTime ) / (float)ZOOM_TIME;
if ( f > 1.0 ) {
fov_x = fov_x;
} else {
if ( f <= 1.0 ) {
fov_x = zoomFov + f * ( fov_x - zoomFov );
}
}
Expand Down
2 changes: 1 addition & 1 deletion code/client/libmumblelink.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ int mumble_link(const char* name)
close(shmfd);
#endif
memset(lm, 0, sizeof(LinkedMem));
mbstowcs(lm->name, name, sizeof(lm->name));
mbstowcs(lm->name, name, sizeof(lm->name) / sizeof(wchar_t));

return 0;
}
Expand Down
5 changes: 1 addition & 4 deletions code/qcommon/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -2329,10 +2329,7 @@ A way to force a bus error for development reasons
=================
*/
static void Com_Crash_f( void ) {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wnull-dereference"
* ( int * ) 0 = 0x12345678;
#pragma clang diagnostic pop
* ( volatile int * ) 0 = 0x12345678;
}

/*
Expand Down
3 changes: 2 additions & 1 deletion code/qcommon/q_shared.c
Original file line number Diff line number Diff line change
Expand Up @@ -706,11 +706,12 @@ int Q_isalpha( int c )
qboolean Q_isanumber( const char *s )
{
char *p;
double UNUSED_VAR d;

if( *s == '\0' )
return qfalse;

strtod( s, &p );
d = strtod( s, &p );

return *p == '\0';
}
Expand Down
6 changes: 6 additions & 0 deletions code/qcommon/q_shared.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#endif
#endif

#ifdef __GNUC__
#define UNUSED_VAR __attribute__((unused))
#else
#define UNUSED_VAR
#endif

#if (defined _MSC_VER)
#define Q_EXPORT __declspec(dllexport)
#elif (defined __SUNPRO_C)
Expand Down
8 changes: 4 additions & 4 deletions code/renderer/tr_bsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,11 @@ static shader_t *ShaderForShaderNum( int shaderNum, int lightmapNum ) {
shader_t *shader;
dshader_t *dsh;

shaderNum = LittleLong( shaderNum );
if ( shaderNum < 0 || shaderNum >= s_worldData.numShaders ) {
ri.Error( ERR_DROP, "ShaderForShaderNum: bad num %i", shaderNum );
int _shaderNum = LittleLong( shaderNum );
if ( _shaderNum < 0 || _shaderNum >= s_worldData.numShaders ) {
ri.Error( ERR_DROP, "ShaderForShaderNum: bad num %i", _shaderNum );
}
dsh = &s_worldData.shaders[ shaderNum ];
dsh = &s_worldData.shaders[ _shaderNum ];

if ( r_vertexLight->integer || glConfig.hardwareType == GLHW_PERMEDIA2 ) {
lightmapNum = LIGHTMAP_BY_VERTEX;
Expand Down
19 changes: 11 additions & 8 deletions code/sys/con_tty.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,14 @@ send "\b \b"
static void CON_Back( void )
{
char key;
size_t UNUSED_VAR size;

key = '\b';
write(STDOUT_FILENO, &key, 1);
size = write(STDOUT_FILENO, &key, 1);
key = ' ';
write(STDOUT_FILENO, &key, 1);
size = write(STDOUT_FILENO, &key, 1);
key = '\b';
write(STDOUT_FILENO, &key, 1);
size = write(STDOUT_FILENO, &key, 1);
}

/*
Expand Down Expand Up @@ -145,12 +146,13 @@ static void CON_Show( void )
ttycon_hide--;
if (ttycon_hide == 0)
{
write(STDOUT_FILENO, "]", 1);
size_t UNUSED_VAR size;
size = write(STDOUT_FILENO, "]", 1);
if (TTY_con.cursor)
{
for (i=0; i<TTY_con.cursor; i++)
{
write(STDOUT_FILENO, TTY_con.buffer+i, 1);
size = write(STDOUT_FILENO, TTY_con.buffer+i, 1);
}
}
}
Expand Down Expand Up @@ -327,6 +329,7 @@ char *CON_Input( void )
int avail;
char key;
field_t *history;
size_t UNUSED_VAR size;

if(ttycon_on)
{
Expand Down Expand Up @@ -356,8 +359,8 @@ char *CON_Input( void )
Q_strncpyz(text, TTY_con.buffer, sizeof(text));
Field_Clear(&TTY_con);
key = '\n';
write(STDOUT_FILENO, &key, 1);
write(STDOUT_FILENO, "]", 1);
size = write(STDOUT_FILENO, &key, 1);
size = write(STDOUT_FILENO, "]", 1);
return text;
}
if (key == '\t')
Expand Down Expand Up @@ -421,7 +424,7 @@ char *CON_Input( void )
TTY_con.buffer[TTY_con.cursor] = key;
TTY_con.cursor++;
// print the current line (this is differential)
write(STDOUT_FILENO, &key, 1);
size = write(STDOUT_FILENO, &key, 1);
}

return NULL;
Expand Down

0 comments on commit ebe469f

Please sign in to comment.