~ubuntu-branches/ubuntu/utopic/xfsprogs/utopic-proposed

« back to all changes in this revision

Viewing changes to db/debug.c

  • Committer: Bazaar Package Importer
  • Author(s): Nathan Scott
  • Date: 2009-05-06 11:29:18 UTC
  • mfrom: (8.1.1 jaunty)
  • Revision ID: james.westby@ubuntu.com-20090506112918-uzoyzcp90rtr8td7
Tags: 3.0.2
New bugfix release

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
static int      debug_f(int argc, char **argv);
25
25
 
26
26
static const cmdinfo_t  debug_cmd =
27
 
        { "debug", NULL, debug_f, 0, 1, 0, "[flagbits]",
28
 
          "set debug option bits", NULL };
 
27
        { "debug", NULL, debug_f, 0, 1, 0, N_("[flagbits]"),
 
28
          N_("set debug option bits"), NULL };
29
29
 
30
30
long    debug_state;
31
31
 
39
39
        if (argc > 1) {
40
40
                debug_state = strtol(argv[1], &p, 0);
41
41
                if (*p != '\0') {
42
 
                        dbprintf("bad value for debug %s\n", argv[1]);
 
42
                        dbprintf(_("bad value for debug %s\n"), argv[1]);
43
43
                        return 0;
44
44
                }
45
45
        }