Skip to content

Commit f8987fc

Browse files
committed
Work around a bug in UBSan that is causing CI failures.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116834
1 parent da20cce commit f8987fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/sudoers/sudoreplay.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1678,9 +1678,9 @@ read_keyboard(int fd, int what, void *v)
16781678
static void
16791679
display_usage(FILE *fp)
16801680
{
1681-
fprintf(fp, _("usage: %s [-hnRS] [-d dir] [-m num] [-s num] ID\n"),
1681+
fprintf(fp, "usage: %s [-hnRS] [-d dir] [-m num] [-s num] ID\n",
16821682
getprogname());
1683-
fprintf(fp, _("usage: %s [-h] [-d dir] -l [search expression]\n"),
1683+
fprintf(fp, "usage: %s [-h] [-d dir] -l [search expression]\n",
16841684
getprogname());
16851685
}
16861686

0 commit comments

Comments
 (0)