From: Daniel Veillard Date: Wed, 13 Jun 2007 13:13:59 +0000 (+0000) Subject: tiny fix on last patch, Daniel X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=fce0ce6f85490b6396ac128bd3166fdc77700cf3;p=libvirt.git tiny fix on last patch, Daniel --- diff --git a/src/virsh.c b/src/virsh.c index fc81ed7986..877ed3cc1b 100644 --- a/src/virsh.c +++ b/src/virsh.c @@ -2897,7 +2897,7 @@ vshCmddefHelp(vshControl * ctl, const char *cmdname, int withprog) else if (opt->type == VSH_OT_DATA) snprintf(buf, sizeof(buf), "<%s>", opt->name); - fprintf(stdout, " %-15s %s\n", buf, _(opt->help)); + fprintf(stdout, " %-15s %s\n", buf, _N(opt->help)); } } fputc('\n', stdout);