aboutsummaryrefslogtreecommitdiffstats
path: root/src/zsets.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zsets.c')
-rw-r--r--src/zsets.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zsets.c b/src/zsets.c
index 1701c6b..b5f9e04 100644
--- a/src/zsets.c
+++ b/src/zsets.c
@@ -17,12 +17,12 @@ zsets(z_t a, const char *str)
str += neg || (*str == '+');
- if (check(unlikely(!*str))) {
+ if (check(!*str)) {
errno = EINVAL;
return -1;
}
for (str_end = str; *str_end; str_end++) {
- if (check(unlikely(!isdigit(*str_end)))) {
+ if (check(!isdigit(*str_end))) {
errno = EINVAL;
return -1;
}