diff options
author | mycroft <mycroft@pkgsrc.org> | 2000-10-21 21:57:39 +0000 |
---|---|---|
committer | mycroft <mycroft@pkgsrc.org> | 2000-10-21 21:57:39 +0000 |
commit | 52436f757f805561b0866ad87788f258c085bbf2 (patch) | |
tree | c5b2e7a464c4ba949aeec50b9dc661c6fde0cb13 /games/xdoom | |
parent | 88197ef7e55b0eb3004fbfb8a4212c397efe377c (diff) | |
download | pkgsrc-52436f757f805561b0866ad87788f258c085bbf2.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-av | 6 |
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; |