blob: eecebd3b4f081b438e6ac3a9d84a890d56d20dd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-av,v 1.4 2010/02/22 21:58:47 wiz 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
@@ -36,9 +36,8 @@
{
// Should be "IWAD" or "PWAD".
char identification[4];
- int numlumps;
- int infotableofs;
-
+ int numlumps __attribute__ ((packed));
+ int infotableofs __attribute__ ((packed));
} wadinfo_t;
|