diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2007-05-12 19:11:45 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2007-05-12 19:11:45 +0000 |
| commit | 5c937d20ad353f8857a93aaa9f96f24089b8bde6 (patch) | |
| tree | 6391486bc75e7cf698120daa1339cd57a3bc1d0f /src/document-undo.cpp | |
| parent | Applied patch 1707577 to add "ft" and "yd" (diff) | |
| download | inkscape-5c937d20ad353f8857a93aaa9f96f24089b8bde6.tar.gz inkscape-5c937d20ad353f8857a93aaa9f96f24089b8bde6.zip | |
Fixed print specifier
(bzr r3006)
Diffstat (limited to 'src/document-undo.cpp')
| -rw-r--r-- | src/document-undo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/document-undo.cpp b/src/document-undo.cpp index 0f0a606a1..ce5564ffb 100644 --- a/src/document-undo.cpp +++ b/src/document-undo.cpp @@ -147,7 +147,7 @@ public: : InteractionEvent(share_static_string("commit")) { _addProperty(share_static_string("timestamp"), timestamp()); - gchar *serial = g_strdup_printf("%ul", doc->serial()); + gchar *serial = g_strdup_printf("%lu", doc->serial()); _addProperty(share_static_string("document"), serial); g_free(serial); Verb *verb = Verb::get(type); |
