aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ini.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ini.c')
-rw-r--r--lib/ini.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ini.c b/lib/ini.c
index ad409283..3819e3da 100644
--- a/lib/ini.c
+++ b/lib/ini.c
@@ -62,11 +62,11 @@ static char *ini_strip_whitespace( char *in )
{
char *e;
- while( isspace( *in ) )
+ while( g_ascii_isspace( *in ) )
in++;
e = in + strlen( in ) - 1;
- while( e > in && isspace( *e ) )
+ while( e > in && g_ascii_isspace( *e ) )
e--;
e[1] = 0;