diff options
Diffstat (limited to 'games-mud/mcl/files/mcl-0.53.00-gcc34.patch')
-rw-r--r-- | games-mud/mcl/files/mcl-0.53.00-gcc34.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/games-mud/mcl/files/mcl-0.53.00-gcc34.patch b/games-mud/mcl/files/mcl-0.53.00-gcc34.patch new file mode 100644 index 000000000000..f25d9c4eb925 --- /dev/null +++ b/games-mud/mcl/files/mcl-0.53.00-gcc34.patch @@ -0,0 +1,12 @@ +esdiff -ru mcl-0.53.00/InputLine.cc mcl-0.53.00.new/InputLine.cc +--- mcl-0.53.00/InputLine.cc 2003-09-29 12:37:49.000000000 +0200 ++++ mcl-0.53.00.new/InputLine.cc 2004-07-28 16:40:13.025986752 +0200 +@@ -27,7 +27,7 @@ + + History::History(int _id) : id (_id), current(0) { + max_history = config->getOption(opt_histsize); +- strings = new (char*)[max_history]; ++ strings = new char*[max_history]; + timestamps = new time_t[max_history]; + + // Hmm, not sure about this |