Commit 521bb498ed23692c270b9486843de053e2cf9a9e

Ran Benita 2019-12-27T22:08:57

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 <ran@unusedvar.com>

1
2
3
4
5
6
7
8
9
10
11
12
13
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)