diff options
Diffstat (limited to 'src/helperfuncs.cpp')
-rw-r--r-- | src/helperfuncs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 13716b78b..279ccc5f4 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -1445,7 +1445,7 @@ void Error(int status) log(DEFAULT,"Please report the backtrace lines shown below with any bugreport to the bugtracker at http://www.inspircd.org/bugtrack/"); size = backtrace(array, 30); strings = backtrace_symbols(array, size); - for (int i = 0; i < size; i++) { + for (size_t i = 0; i < size; i++) { log(DEFAULT,"[%d] %s", i, strings[i]); } free(strings); |