alpha compile fix

This commit is contained in:
Bill Currie 2002-04-26 17:15:00 +00:00
parent a1c6547f16
commit 9399b35b02
1 changed files with 1 additions and 1 deletions

View File

@ -2067,7 +2067,7 @@ Cmd_Strlen_f (void)
Cmd_Error ("strlen: invalid number of arguments.\n");
return;
}
Cmd_Return (va("%i",strlen (Cmd_Argv(1))));
Cmd_Return (va("%ld", (long) strlen (Cmd_Argv(1))));
}
void