X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fpostscript.c;h=a84d14eebce232128809dc63772b8b5c628ef8e0;hb=c246143823df29e9ce4c5115c647a47954dea883;hp=b658cdf3d2f669693a5036b96791831211dc7b91;hpb=8297784ffdab47d35820735eb130a484ba9b6c01;p=pspp diff --git a/src/output/postscript.c b/src/output/postscript.c index b658cdf3d2..a84d14eebc 100644 --- a/src/output/postscript.c +++ b/src/output/postscript.c @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -47,7 +46,6 @@ #include "minmax.h" #include "output.h" #include "size_max.h" -#include "strsep.h" #include "gettext.h" #define _(msgid) gettext (msgid) @@ -270,7 +268,7 @@ enum }; /* All the options that the PostScript driver supports. */ -static struct outp_option option_tab[] = +static const struct outp_option option_tab[] = { {"output-file", output_file_arg,0}, {"paper-size", paper_size_arg, 0}, @@ -434,7 +432,7 @@ find_ps_file (const char *name) else { char *base_name = xasprintf ("psfonts/%s", name); - char *file_name = fn_search_path (base_name, config_path, NULL); + char *file_name = fn_search_path (base_name, config_path); free (base_name); return file_name; } @@ -1426,7 +1424,7 @@ reencode_font (struct outp_driver *this, struct font *font) } /* PostScript driver class. */ -struct outp_class postscript_class = +const struct outp_class postscript_class = { "postscript", 0,