Skip to content

Commit

Permalink
Fix char* local var
Browse files Browse the repository at this point in the history
Set constante some char* local variable.

Signed-off-by: XoD <xoddark@gmail.com>
  • Loading branch information
XoD committed Dec 19, 2011
1 parent ea5445e commit dfa3aca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions neo/d3xp/gamesys/SysCmds.cpp
Expand Up @@ -446,7 +446,7 @@ argv(0) god
==================
*/
void Cmd_God_f( const idCmdArgs &args ) {
char *msg;
const char *msg;
idPlayer *player;

player = gameLocal.GetLocalPlayer();
Expand Down Expand Up @@ -475,7 +475,7 @@ argv(0) notarget
==================
*/
void Cmd_Notarget_f( const idCmdArgs &args ) {
char *msg;
const char *msg;
idPlayer *player;

player = gameLocal.GetLocalPlayer();
Expand All @@ -502,7 +502,7 @@ argv(0) noclip
==================
*/
void Cmd_Noclip_f( const idCmdArgs &args ) {
char *msg;
const char *msg;
idPlayer *player;

player = gameLocal.GetLocalPlayer();
Expand Down

0 comments on commit dfa3aca

Please sign in to comment.