From e97663e78e85c5c1874d4aa0b76e0fbf63fcd879 Mon Sep 17 00:00:00 2001 From: mental Date: Thu, 10 May 2007 01:18:32 +0000 Subject: [PATCH] fix formatting --- src/debug/simple-event.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/debug/simple-event.h b/src/debug/simple-event.h index 115c1e2f4..4d5264d73 100644 --- a/src/debug/simple-event.h +++ b/src/debug/simple-event.h @@ -56,10 +56,10 @@ protected: void _addProperty(char const *name, char const *value) { _addProperty(Util::share_string(name), Util::share_string(value)); } - void _addProperty(Util::ptr_shared name, unsigned long value) { - _addFormattedProperty(name, "%ul", value); + void _addProperty(Util::ptr_shared name, long value) { + _addFormattedProperty(name, "%l", value); } - void _addProperty(char const *name, unsigned long value) { + void _addProperty(char const *name, long value) { _addProperty(Util::share_string(name), value); } -- 2.30.2