]> git.pld-linux.org Git - packages/gaphor.git/blob - gaphor-int-overflow.patch
- int-overflow.patch to fix build
[packages/gaphor.git] / gaphor-int-overflow.patch
1 --- gaphor-0.5.0/utils/msgfmt.py.orig   2002-12-29 10:08:16.000000000 +0100
2 +++ gaphor-0.5.0/utils/msgfmt.py        2005-01-09 21:02:23.137887168 +0100
3 @@ -82,7 +82,7 @@
4          koffsets += [l1, o1+keystart]
5          voffsets += [l2, o2+valuestart]
6      offsets = koffsets + voffsets
7 -    output = struct.pack("iiiiiii",
8 +    output = struct.pack("Iiiiiii",
9                           0x950412de,        # Magic
10                           0,                 # Version
11                           len(keys),         # # of entries
This page took 0.059435 seconds and 3 git commands to generate.