From 9e35bf104c04ae7cf31ad82984a0bce1bf24d080 Mon Sep 17 00:00:00 2001 From: Evan Miller Date: Sat, 17 Dec 2022 04:57:01 -0500 Subject: [PATCH] fix isspace call --- src/util/mdb-sql.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/mdb-sql.c b/src/util/mdb-sql.c index 4257f5d..fa087a6 100644 --- a/src/util/mdb-sql.c +++ b/src/util/mdb-sql.c @@ -304,7 +304,7 @@ find_sql_terminator(char *s) } sp = &s[len-1]; - while (sp > s && isspace(*sp)) { + while (sp > s && isspace((int)*sp)) { sp--; } @@ -464,7 +464,7 @@ main(int argc, char **argv) if (in) { fprintf(stderr, "Can not handle nested opens\n"); } else { - while (*fname && isspace(*fname)) + while (*fname && isspace((int)*fname)) fname++; if (!(in = fopen(fname, "r"))) { fprintf(stderr,"Unable to open file %s\n", fname);