summaryrefslogtreecommitdiff
path: root/src/debug.cpp
diff options
context:
space:
mode:
authoronkrot <vob999@bk.ru>2015-01-10 11:05:42 +0000
committerCraig Robbins <kde.psych@gmail.com>2015-01-13 23:48:56 +1000
commit0fd1ee03808ee8121e7b65e5c7c9ba19599d185e (patch)
tree6ce75f294a94cfdcb3dfaa45ef8f7510ca893074 /src/debug.cpp
parent5d08ada2241569501fa22bfc5e5cde0ee7dfd0c7 (diff)
downloadminetest-0fd1ee03808ee8121e7b65e5c7c9ba19599d185e.tar.gz
minetest-0fd1ee03808ee8121e7b65e5c7c9ba19599d185e.tar.bz2
minetest-0fd1ee03808ee8121e7b65e5c7c9ba19599d185e.zip
Performance fixes.
Diffstat (limited to 'src/debug.cpp')
-rw-r--r--src/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug.cpp b/src/debug.cpp
index 8c02f1d6b..3b2fb641a 100644
--- a/src/debug.cpp
+++ b/src/debug.cpp
@@ -130,7 +130,7 @@ void assert_fail(const char *assertion, const char *file,
unsigned int line, const char *function)
{
DEBUGPRINT("\nIn thread %lx:\n"
- "%s:%d: %s: Assertion '%s' failed.\n",
+ "%s:%u: %s: Assertion '%s' failed.\n",
(unsigned long)get_current_thread_id(),
file, line, function, assertion);