From 521bb498ed23692c270b9486843de053e2cf9a9e Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Fri, 27 Dec 2019 22:08:57 +0200 Subject: xkbcomp: remove cast which triggers warning on gcc Will need some other way to take care of the warning on MSVC. Signed-off-by: Ran Benita --- src/xkbcomp/scanner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xkbcomp/scanner.c b/src/xkbcomp/scanner.c index 65eef53..b349499 100644 --- a/src/xkbcomp/scanner.c +++ b/src/xkbcomp/scanner.c @@ -52,7 +52,7 @@ number(struct scanner *s, int64_t *out, int *out_tok) else if (is_float) /* The parser currently just ignores floats, so the cast is * fine - the value doesn't matter. */ - *out = (int64_t) strtod(start, &end); + *out = strtod(start, &end); else *out = strtoul(start, &end, 10); if (errno != 0 || s->s + s->pos != end) -- cgit v1.2.3