diff options
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index e1436a2..820d859 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -3315,8 +3315,8 @@ pointer_int_sum (location_t location, enum tree_code resultcode, offset = offset + tree_low_cst (intop, 0); if (offset < 0 || offset > max) - warning_at (location, 0, "offset %<" HOST_WIDE_INT_PRINT_DEC - "%> outside bounds of constant string", + warning_at (location, 0, + "offset %<%wd%> outside bounds of constant string", tree_low_cst (intop, 0)); } } |