diff options
author | kristerw <kristerw@pkgsrc.org> | 2004-05-10 02:35:28 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2004-05-10 02:35:28 +0000 |
commit | b1b599f6905cea1c51d280ca9c7d6825e5b9cc0b (patch) | |
tree | 3396f0456c31d79e7a8211c9e8d87f38fcc288eb /www/screws/patches | |
parent | 6b27a6f679f5d21c47efa7f98bc4b02663756fb4 (diff) | |
download | pkgsrc-b1b599f6905cea1c51d280ca9c7d6825e5b9cc0b.tar.gz |
Make this compile on gcc 2.95 by removing an unneccessary C99 construct.
Diffstat (limited to 'www/screws/patches')
-rw-r--r-- | www/screws/patches/patch-aa | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/www/screws/patches/patch-aa b/www/screws/patches/patch-aa new file mode 100644 index 00000000000..3858fc96a4c --- /dev/null +++ b/www/screws/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.1 2004/05/10 02:35:28 kristerw Exp $ + +--- src/Hsml/SubLang.c.orig Mon May 10 04:27:45 2004 ++++ src/Hsml/SubLang.c Mon May 10 04:28:14 2004 +@@ -89,8 +89,8 @@ + + void showBinPath() + { +- getPathFromEnv(); + int i=0; ++ getPathFromEnv(); + printf("=[ PATH ]=\n"); + while(sublang[i].file) + { |