From 4cc00c5a1c18d07b8cf1ffbd1de2f4255e13acfb Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Thu, 17 Nov 1994 11:06:36 -0500 Subject: [PATCH] (print_char_table): Allow `L' for `u'. From-SVN: r8477 --- gcc/c-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/c-common.c b/gcc/c-common.c index 6735b5aa8c1..f3844e2286a 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -532,7 +532,7 @@ typedef struct { static format_char_info print_char_table[] = { { "di", 0, T_I, T_I, T_L, T_LL, T_LL, "-wp0 +" }, { "oxX", 0, T_UI, T_UI, T_UL, T_ULL, T_ULL, "-wp0#" }, - { "u", 0, T_UI, T_UI, T_UL, T_ULL, NULL, "-wp0" }, + { "u", 0, T_UI, T_UI, T_UL, T_ULL, T_ULL, "-wp0" }, /* Two GNU extensions. */ { "Z", 0, T_ST, NULL, NULL, NULL, NULL, "-wp0" }, { "m", 0, T_UI, T_UI, T_UL, NULL, NULL, "-wp" },