summaryrefslogtreecommitdiff
path: root/games/xdoom
diff options
context:
space:
mode:
authormycroft <mycroft>2000-10-21 21:57:39 +0000
committermycroft <mycroft>2000-10-21 21:57:39 +0000
commit4f267ac8be7fdfe9e0857ec5c94b48fd55dd2494 (patch)
treec5b2e7a464c4ba949aeec50b9dc661c6fde0cb13 /games/xdoom
parentbf73ad0ed29622060818c35288237132da1e16ec (diff)
downloadpkgsrc-4f267ac8be7fdfe9e0857ec5c94b48fd55dd2494.tar.gz
int32_t -> int
This broke on -current, because int32_t isn't defined by default. In addition, it's kinda dumb to do this in one particular place, leaving the rest of the structures defined to use non-fixed types.
Diffstat (limited to 'games/xdoom')
-rw-r--r--games/xdoom/patches/patch-av6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/xdoom/patches/patch-av b/games/xdoom/patches/patch-av
index 69679e8594d..ad8b3d222cd 100644
--- a/games/xdoom/patches/patch-av
+++ b/games/xdoom/patches/patch-av
@@ -1,4 +1,4 @@
-$NetBSD: patch-av,v 1.1 2000/02/03 16:01:16 abs Exp $
+$NetBSD: patch-av,v 1.2 2000/10/21 21:57:39 mycroft Exp $
--- linuxdoom-1.10/w_wad.h.orig Mon Dec 22 20:25:32 1997
+++ linuxdoom-1.10/w_wad.h Thu Feb 3 01:34:03 2000
@@ -9,8 +9,8 @@ $NetBSD: patch-av,v 1.1 2000/02/03 16:01:16 abs Exp $
- int numlumps;
- int infotableofs;
-
-+ int32_t numlumps __attribute__ ((packed));
-+ int32_t infotableofs __attribute__ ((packed));
++ int numlumps __attribute__ ((packed));
++ int infotableofs __attribute__ ((packed));
} wadinfo_t;