summaryrefslogtreecommitdiff
path: root/www/dillo/patches
diff options
context:
space:
mode:
authordillo <dillo>2001-12-12 05:57:29 +0000
committerdillo <dillo>2001-12-12 05:57:29 +0000
commit277ff5b796aaaaeb1adc12f842d526dfdeb7002d (patch)
treeadb7d8bd79c906aa1217269251ef0f615e327df4 /www/dillo/patches
parentb91eece0e52d85a691c02ce25afd6887ad78ec10 (diff)
downloadpkgsrc-277ff5b796aaaaeb1adc12f842d526dfdeb7002d.tar.gz
Fix LP64 bug. Thanks to Michael L. Hitch for tracking it down.
Diffstat (limited to 'www/dillo/patches')
-rw-r--r--www/dillo/patches/patch-ac13
1 files changed, 13 insertions, 0 deletions
diff --git a/www/dillo/patches/patch-ac b/www/dillo/patches/patch-ac
new file mode 100644
index 00000000000..d15f1e4c55f
--- /dev/null
+++ b/www/dillo/patches/patch-ac
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.1 2001/12/12 05:57:29 dillo Exp $
+
+--- src/dw_table.c.orig Tue Oct 16 19:49:25 2001
++++ src/dw_table.c
+@@ -661,7 +661,7 @@
+ a_List_resize (table->cum_height, table->num_rows, sizeof(gint32),
+ table->cum_height_max);
+ table->num_rows--;
+- a_List_resize (table->row_style, table->num_rows, sizeof(gint32),
++ a_List_resize (table->row_style, table->num_rows, sizeof(DwStyle*),
+ table->row_style_max);
+
+ old_num_children = table->num_children;