diff options
| -rw-r--r-- | src/xterm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c index 868c8688e42..d329483ff4c 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -6477,9 +6477,9 @@ x_list_fonts (f, pattern, size, maxnames) char *tmp; num_fonts = 1; - names = alloca (sizeof (char *)); + names = (char **) alloca (sizeof (char *)); /* Some systems only allow alloca assigned to a simple var. */ - tmp = alloca (len + 1); names[0] = tmp; + tmp = (char *) alloca (len + 1); names[0] = tmp; bcopy (name, names[0], len + 1); XFree (name); } |
