summaryrefslogtreecommitdiff
path: root/src/pal/src/cruntime/string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/src/cruntime/string.cpp')
-rw-r--r--src/pal/src/cruntime/string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pal/src/cruntime/string.cpp b/src/pal/src/cruntime/string.cpp
index abe6d136f0..2abce6fd8f 100644
--- a/src/pal/src/cruntime/string.cpp
+++ b/src/pal/src/cruntime/string.cpp
@@ -278,7 +278,7 @@ PAL_atol(const char *szNumber)
PERF_ENTRY(atol);
ENTRY("atol (szNumber=%p (%s))\n",
- szNumber?szNumber:"NULL"
+ szNumber, szNumber?szNumber:"NULL"
);
lResult = atol(szNumber);