summaryrefslogtreecommitdiffstats
path: root/apps/cuesheet.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/cuesheet.c')
-rw-r--r--apps/cuesheet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/cuesheet.c b/apps/cuesheet.c
index ea9b4d2a7e..7c320d4b7c 100644
--- a/apps/cuesheet.c
+++ b/apps/cuesheet.c
@@ -89,7 +89,7 @@ bool look_for_cuesheet_file(const char *trackpath)
static char *skip_whitespace(char* buf)
{
char *r = buf;
- while (*r && (*r < 33))
+ while (*r && isspace(*r))
r++;
return r;
}