]> sigrok.org Git - libsigrok.git/commitdiff
strutil: cosmetics, fixup minor style nits
authorGerhard Sittig <redacted>
Thu, 19 Jul 2018 18:59:37 +0000 (20:59 +0200)
committerUwe Hermann <redacted>
Sun, 22 Jul 2018 14:36:15 +0000 (16:36 +0200)
src/strutil.c

index 1f558f15ffe4c38f81818a5ef5bb1509403b71b9..99e711d97b367d472bb8635f3a1dacb2ec9d3c16 100644 (file)
@@ -621,8 +621,8 @@ SR_API int sr_parse_rational(const char *str, struct sr_rational *ret)
 
        if (str == endptr && (str[0] == '-' || str[0] == '+') && str[1] == '.')
                endptr += 1;
-       else if ((str == endptr && str[0] == '.' ))
-               ;
+       else if (str == endptr && str[0] == '.')
+               /* EMPTY */;
        else if (errno)
                return SR_ERR;
 
@@ -631,7 +631,7 @@ SR_API int sr_parse_rational(const char *str, struct sr_rational *ret)
 
        errno = 0;
        if (*endptr == '.') {
-               const charstart = endptr + 1;
+               const char *start = endptr + 1;
                fractional = g_ascii_strtoll(start, &endptr, 10);
                if (errno)
                        return SR_ERR;