removed possible C89 compilation issue

This commit is contained in:
Tim Ruehsen 2014-06-20 17:04:22 +02:00
parent 1c20931896
commit f7f1408088
2 changed files with 4 additions and 6 deletions

View File

@ -110,8 +110,8 @@ struct _psl_ctx_st {
# include "suffixes.c"
#else
/* if this source file is included by psl2c.c, provide empty builtin data */
static _psl_entry_t suffixes[0];
static _psl_entry_t suffix_exceptions[0];
static _psl_entry_t suffixes[1];
static _psl_entry_t suffix_exceptions[1];
static time_t _psl_file_time;
static time_t _psl_compile_time;
static const char _psl_sha1_checksum[] = "";

View File

@ -28,8 +28,6 @@
*
*/
#if HAVE_CONFIG_H
# include <config.h>
#endif
@ -182,8 +180,8 @@ int main(int argc, const char **argv)
psl_free(psl);
#else
if ((fpout = fopen(argv[2], "w"))) {
fprintf(fpout, "static _psl_entry_t suffixes[0];\n");
fprintf(fpout, "static _psl_entry_t suffix_exceptions[0];\n");
fprintf(fpout, "static _psl_entry_t suffixes[1];\n");
fprintf(fpout, "static _psl_entry_t suffix_exceptions[1];\n");
fprintf(fpout, "static time_t _psl_file_time;\n");
fprintf(fpout, "static time_t _psl_compile_time;\n");
fprintf(fpout, "static const char _psl_sha1_checksum[] = \"\";\n");