Skip to content

Commit

Permalink
create new file (requested by dmcmahill in ticket #1209):
Browse files Browse the repository at this point in the history
fix bug with static initializers which prevented compilition on 64 bit
platforms
  • Loading branch information
grant committed Mar 13, 2003
1 parent b0b88bb commit 5d73042
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions net/soup/patches/patch-ac
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
$NetBSD: patch-ac,v 1.1.2.2 2003/03/13 02:53:06 grant Exp $

guint isn't big enough for a pointer on LP64 systems...

--- src/libsoup/soup-message.c.orig Mon Dec 2 11:03:15 2002
+++ src/libsoup/soup-message.c Sun Mar 2 15:34:32 2003
@@ -1008,5 +1008,5 @@
NULL,
RESPONSE_HEADER_HANDLER,
- { (guint) "Location" }
+ { .header = "Location" }
},
/*

0 comments on commit 5d73042

Please sign in to comment.