Fix compiler warning about signed & unsigned comparison.

SVN revision: 51446
This commit is contained in:
Christopher Michael 2010-08-19 20:17:01 +00:00
parent b7de1183a7
commit d7b096fb53
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ _gc_orient(E_Gadcon_Client *gcc, E_Gadcon_Orient orient)
Instance *inst;
inst = gcc->data;
if (orient != -1) inst->orient = orient;
if ((int)orient != -1) inst->orient = orient;
switch (inst->orient)
{