aboutsummaryrefslogtreecommitdiff
path: root/primedev/util/printcommands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'primedev/util/printcommands.cpp')
-rw-r--r--primedev/util/printcommands.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/primedev/util/printcommands.cpp b/primedev/util/printcommands.cpp
index 34d56666..20ebfffc 100644
--- a/primedev/util/printcommands.cpp
+++ b/primedev/util/printcommands.cpp
@@ -52,12 +52,12 @@ void PrintCommandHelpDialogue(const ConCommandBase* command, const char* name)
void TryPrintCvarHelpForCommand(const char* pCommand)
{
// try to display help text for an inputted command string from the console
- int pCommandLen = strlen(pCommand);
+ size_t pCommandLen = strlen(pCommand);
char* pCvarStr = new char[pCommandLen];
strcpy(pCvarStr, pCommand);
// trim whitespace from right
- for (int i = pCommandLen - 1; i; i--)
+ for (size_t i = pCommandLen - 1; i; i--)
{
if (isspace(pCvarStr[i]))
pCvarStr[i] = '\0';