From ac8253871462e148b941e2f527f1f35d9b1d215b Mon Sep 17 00:00:00 2001 From: Mark Olsen Date: Thu, 27 Dec 2007 15:31:27 +0000 Subject: [PATCH] Less undefined operations. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2829 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- fteqtv/rcon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fteqtv/rcon.c b/fteqtv/rcon.c index 6acddcfc..821ef9fa 100644 --- a/fteqtv/rcon.c +++ b/fteqtv/rcon.c @@ -1094,7 +1094,7 @@ void Cmd_Commands(cmdctxt_t *ctx) consolecommand_t lastfunc = NULL; Cmd_Printf(ctx, "Commands:\n"); - for (cmd = rconcommands; cmd->name; cmd = cmd++) + for (cmd = rconcommands; cmd->name; cmd++) { if (cmd->func == lastfunc) continue; //no spamming alternative command names