summaryrefslogtreecommitdiff
path: root/www/clearsilver/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'www/clearsilver/patches/patch-ae')
-rw-r--r--www/clearsilver/patches/patch-ae19
1 files changed, 0 insertions, 19 deletions
diff --git a/www/clearsilver/patches/patch-ae b/www/clearsilver/patches/patch-ae
deleted file mode 100644
index b5c9be60f87..00000000000
--- a/www/clearsilver/patches/patch-ae
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-ae,v 1.1 2008/08/17 08:40:50 dholland Exp $
-
-Fix type mismatch through va_arg() and resulting nasal demons.
-
---- cs/csparse.c.orig 2005-06-30 21:04:34.000000000 -0400
-+++ cs/csparse.c 2008-08-17 04:36:18.000000000 -0400
-@@ -3359,9 +3359,9 @@ static NEOERR * _builtin_str_slice (CSPA
- NEOERR *err;
- char *s = NULL;
- char *slice;
-- int b = 0;
-- int e = 0;
-- int len;
-+ long int b = 0;
-+ long int e = 0;
-+ long int len;
-
- result->op_type = CS_TYPE_STRING;
- result->s = "";