]> sourceware.org Git - systemtap.git/commitdiff
i18n: fix printf formatting typo in commit 984ad50c
authorFrank Ch. Eigler <fche@redhat.com>
Mon, 17 Oct 2011 20:15:47 +0000 (16:15 -0400)
committerFrank Ch. Eigler <fche@redhat.com>
Mon, 17 Oct 2011 20:15:47 +0000 (16:15 -0400)
parse.cxx

index 42fd0186828d997cead3e5a28cf2bbce748a7e99..d308c274ab80a5fc2f5c587370f094166c623698 100644 (file)
--- a/parse.cxx
+++ b/parse.cxx
@@ -954,8 +954,8 @@ skip:
         throw parse_error (_("invalid nested substitution of command line arguments"), n);
       if (idx == 0 ||
           idx-1 >= session.args.size())
-        throw parse_error (_F("command line argument index %u out of range [1-%u]",
-                              idx, session.args.size()),
+        throw parse_error (_F("command line argument index %lu out of range [1-%lu]",
+                              (unsigned long) idx, (unsigned long) session.args.size()),
                            n);
       const string& arg = session.args[idx-1];
       input_put ((c == '$') ? arg : lex_cast_qstring (arg), n);
This page took 0.032099 seconds and 5 git commands to generate.