diff --git a/src/Nazara/Core/Log.cpp b/src/Nazara/Core/Log.cpp index 746526d55..1c60ce7dd 100644 --- a/src/Nazara/Core/Log.cpp +++ b/src/Nazara/Core/Log.cpp @@ -144,7 +144,7 @@ void NzLog::WriteError(nzErrorType type, const NzString& error, unsigned int lin stream += " ("; stream += file; stream += ':'; - stream += line; + stream += NzString::Number(line); stream += ": "; stream += func; stream += ')';