diff options
Diffstat (limited to 'games-strategy/liquidwar/files/liquidwar-gcc-3.3-fix.patch')
-rw-r--r-- | games-strategy/liquidwar/files/liquidwar-gcc-3.3-fix.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/games-strategy/liquidwar/files/liquidwar-gcc-3.3-fix.patch b/games-strategy/liquidwar/files/liquidwar-gcc-3.3-fix.patch deleted file mode 100644 index 8ce3938ab357..000000000000 --- a/games-strategy/liquidwar/files/liquidwar-gcc-3.3-fix.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- liquidwar-5.5.9/src/netconf.c 2003-06-14 23:30:42.000000000 +0200 -+++ liquidwar-5.5.9-new/src/netconf.c 2003-06-14 23:31:59.000000000 +0200 -@@ -70,27 +70,27 @@ - /*==================================================================*/ - - #define LW_NETCONF_CHECK_RANGE(VAL,MAX) \ --if (config-> ## VAL < 0) \ -+if (config->VAL < 0) \ - { \ - result=0; \ - log_print_str("Error: " #VAL " is "); \ --log_print_int(config-> ## VAL); \ -+log_print_int(config->VAL); \ - log_println_str(", and should be >= 0"); \ --config-> ## VAL = 0; \ -+config->VAL = 0; \ - } \ --if (config-> ## VAL > MAX) \ -+if (config->VAL > MAX) \ - { \ - result=0; \ - log_print_str("Error: " #VAL " is > "); \ --log_print_int(config-> ## VAL); \ -+log_print_int(config->VAL); \ - log_print_str(", and should be <= "); \ - log_println_int(MAX); \ --config-> ## VAL = MAX; \ -+config->VAL = MAX; \ - } - - #define LW_NETCONF_PRINT_VALUE(VAL) \ - log_print_str(#VAL " = "); \ --log_println_int(config-> ## VAL); -+log_println_int(config->VAL); - - /*==================================================================*/ - /* types */ |