diff options
author | Henry Stiles <henry.stiles@artifex.com> | 2009-08-29 18:24:40 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 2009-08-29 18:24:40 +0000 |
commit | dab755c2ec7c573dd7cc39489593cc7e2dddee7b (patch) | |
tree | 559d68b8235bda679419762095c95e34ff32ae43 /pl/pllfont.c | |
parent | 1896c389593a9ae7bfa5e43890daeb0c4f029e06 (diff) |
Fix 690471, a seg fault on snow leopard resulted from the compiler
casting a pointer type incorrectly because the prototype was not
visible. Could have been completely avoided had the compiler warning
for a missing prototype been heeded. Introduced in 9717 as part of
the romfs work.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@10028 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'pl/pllfont.c')
-rw-r--r-- | pl/pllfont.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pl/pllfont.c b/pl/pllfont.c index 96b241b80..4aee4f92d 100644 --- a/pl/pllfont.c +++ b/pl/pllfont.c @@ -16,8 +16,8 @@ #include "ctype_.h" #include "stdio_.h" #include "string_.h" -/* The following are all for gxfont42.h, except for gp.h. */ #include "gx.h" +#include "gxiodev.h" #include "gp.h" #include "gsccode.h" #include "gserrors.h" |