diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-07-15 00:08:16 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-07-15 00:08:16 +0000 |
commit | b8ebf272fdc895a178ad7cb7102afaf3c1464020 (patch) | |
tree | b674f765b2e048a485d194b3dc8daaaee4f37ac8 /games-strategy/attal/files | |
parent | sync IUSE (+nls), don't assign S=${WORKDIR}/${P}, trim trailing whitespace (M... (diff) | |
download | gentoo-2-b8ebf272fdc895a178ad7cb7102afaf3c1464020.tar.gz gentoo-2-b8ebf272fdc895a178ad7cb7102afaf3c1464020.tar.bz2 gentoo-2-b8ebf272fdc895a178ad7cb7102afaf3c1464020.zip |
gcc-3.4 patch uNF
Diffstat (limited to 'games-strategy/attal/files')
-rw-r--r-- | games-strategy/attal/files/0.8.1-gcc34.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games-strategy/attal/files/0.8.1-gcc34.patch b/games-strategy/attal/files/0.8.1-gcc34.patch new file mode 100644 index 000000000000..55cff4e2aa33 --- /dev/null +++ b/games-strategy/attal/files/0.8.1-gcc34.patch @@ -0,0 +1,11 @@ +--- attal-src-0.8.1/libCommon/genericMapDisposition.cpp.orig 2004-07-14 19:51:47.783372784 -0400 ++++ attal-src-0.8.1/libCommon/genericMapDisposition.cpp 2004-07-14 19:51:56.068113312 -0400 +@@ -59,7 +59,7 @@ + delete [] _dispo; + } + +- _dispo = new (DispositionType *)[ height ]; ++ _dispo = new DispositionType *[ height ]; + for( i = 0; i < height; i++ ) { + _dispo[i] = new DispositionType[ width ]; + for( j = 0; j < width; j++ ){ |