diff options
Diffstat (limited to 'src/gui_w48.c')
-rw-r--r-- | src/gui_w48.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_w48.c b/src/gui_w48.c index ef1e0713d..f417c72d8 100644 --- a/src/gui_w48.c +++ b/src/gui_w48.c @@ -3612,7 +3612,7 @@ get_cmd_args(char *prog, char *cmdline, char ***argvp, char **tofree) { /* Backslashes are only special when followed by a double * quote. */ - i = strspn(p, "\\"); + i = (int)strspn(p, "\\"); if (p[i] == '"') { /* Halve the number of backslashes. */ |