aboutsummaryrefslogtreecommitdiffstats
path: root/set.c
diff options
context:
space:
mode:
Diffstat (limited to 'set.c')
-rw-r--r--set.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/set.c b/set.c
index c8ee9270..00e4bc81 100644
--- a/set.c
+++ b/set.c
@@ -225,7 +225,7 @@ char *set_eval_int( set_t *set, char *value )
s ++;
for( ; *s; s ++ )
- if( !isdigit( *s ) )
+ if( !g_ascii_isdigit( *s ) )
return SET_INVALID;
return value;