summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/debug/simple-event.h6
1 files 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<char> name, unsigned long value) {
- _addFormattedProperty(name, "%ul", value);
+ void _addProperty(Util::ptr_shared<char> 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);
}