From cbe00216fe2b61a4d00cd6bd8189063efc5e132a Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Tue, 1 Sep 2015 23:14:37 +0200 Subject: 36380: Avoid gcc case syntax --- Src/utils.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Src/utils.c b/Src/utils.c index 90f7c3317..ca68eae32 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -3088,7 +3088,8 @@ morefmt: case '#': case '_': case '-': - case '0' ... '9': + case '0': case '1': case '2': case '3': case '4': + case '5': case '6': case '7': case '8': case '9': goto morefmt; strftimehandling: default: -- cgit 1.4.1