diff options
Diffstat (limited to 'deskutils/gnote/files/patch-src_debug.cpp')
-rw-r--r-- | deskutils/gnote/files/patch-src_debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deskutils/gnote/files/patch-src_debug.cpp b/deskutils/gnote/files/patch-src_debug.cpp index cb2fe38059f6..69c81272cbb6 100644 --- a/deskutils/gnote/files/patch-src_debug.cpp +++ b/deskutils/gnote/files/patch-src_debug.cpp @@ -5,7 +5,7 @@ // boost::recursive_mutex::scoped_lock lock(mutex); char buf[128]; - snprintf(buf, 128, "(%d) ", (int)pthread_self()); -+ snprintf(buf, 128, "(%d) ", (pthread_t)pthread_self()); ++ snprintf(buf, 128, "(%ld) ", (pthread_t)pthread_self()); fwrite(buf, 1, strlen(buf), stderr); fwrite(prefix, 1, strlen(prefix), stderr); |