summaryrefslogtreecommitdiff
path: root/source/cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/cmd.c')
-rw-r--r--source/cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cmd.c b/source/cmd.c
index b8308e6..b82c02d 100644
--- a/source/cmd.c
+++ b/source/cmd.c
@@ -398,7 +398,7 @@ static cmd_macro_t *Cmd_FindMacro( const char *name ) {
uint32 hash;
hash = Com_HashString( name, MACRO_HASH_SIZE );
- for( macro = cmd_macroHash[hash]; macro ; macro = macro->hashNext ) {
+ for( macro = cmd_macroHash[hash]; macro; macro = macro->hashNext ) {
if( !strcmp( macro->name, name ) ) {
return macro;
}