aboutsummaryrefslogtreecommitdiffstats
path: root/fileset.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-07-14 00:37:01 +0000
committerGuy Harris <guy@alum.mit.edu>2007-07-14 00:37:01 +0000
commitfad7133f8188d0f8600549c967b065ea09256d6b (patch)
treed461e9a80307638686913091cf8598563839a499 /fileset.c
parent90ab61d9f704d7cd5abc6df5f57f216e1eb1a99a (diff)
Fix yet more casts of ctype.h macro arguments - and fix some cases where
we were passing an uncasted "char" to those macros. svn path=/trunk/; revision=22306
Diffstat (limited to 'fileset.c')
-rw-r--r--fileset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fileset.c b/fileset.c
index 08201f7ee3..5405bd6c00 100644
--- a/fileset.c
+++ b/fileset.c
@@ -111,7 +111,7 @@ fileset_filename_match_pattern(const char *fname)
while(minlen--) {
baselen--;
- if(!isdigit( (int) filename[baselen])) {
+ if(!isdigit( (guchar) filename[baselen])) {
g_free(filename);
return FALSE;
}