summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 614db94)
raw | patch | inline | side by side (parent: 614db94)
author | mental <mental@users.sourceforge.net> | |
Thu, 10 May 2007 01:18:32 +0000 (01:18 +0000) | ||
committer | mental <mental@users.sourceforge.net> | |
Thu, 10 May 2007 01:18:32 +0000 (01:18 +0000) |
src/debug/simple-event.h | patch | blob | history |
index 115c1e2f479a7fbda64fe5f414796fed6efb0114..4d5264d733721d5824648ca4feeb48acc502d658 100644 (file)
--- a/src/debug/simple-event.h
+++ b/src/debug/simple-event.h
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);
}