From 0cf2f20608308acdf3cb922c3736446bbd8f3388 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 20:58:29 +0100 Subject: gentoo resync : 14.07.2018 --- .../xbomber/files/xbomber-101-va_list.patch | 48 ---------------------- 1 file changed, 48 deletions(-) delete mode 100644 games-action/xbomber/files/xbomber-101-va_list.patch (limited to 'games-action/xbomber/files/xbomber-101-va_list.patch') diff --git a/games-action/xbomber/files/xbomber-101-va_list.patch b/games-action/xbomber/files/xbomber-101-va_list.patch deleted file mode 100644 index 5a1691a65ad8..000000000000 --- a/games-action/xbomber/files/xbomber-101-va_list.patch +++ /dev/null @@ -1,48 +0,0 @@ ---- a/bomber.c 2005-11-06 16:50:04.000000000 +0100 -+++ b/bomber.c 2005-11-06 16:47:35.000000000 +0100 -@@ -1,5 +1,6 @@ - #include - #include -+#include - #include - #include - #include -@@ -626,8 +627,11 @@ - void scrprintf(char *str,...) - { - char output[256],*p,*p2; -+va_list ap; - -- vsprintf(output,str,&str+1); -+ va_start(ap, str); -+ vsprintf(output,str,ap); -+ va_end(ap); - p=output; - for(;;) - { -@@ -653,8 +657,11 @@ - void bigscrprintf(char *str,...) - { - char output[256],*p,*p2; -+va_list ap; - -- vsprintf(output,str,&str+1); -+ va_start(ap, str); -+ vsprintf(output,str,ap); -+ va_end(ap); - p=output; - for(;;) - { -@@ -1873,8 +1880,11 @@ - additem(char *item,...) - { - char output[256]; -+va_list ap; - -- vsprintf(output,item,&item+1); -+ va_start(ap, item); -+ vsprintf(output,item,ap); -+ va_end(ap); - if(menunum<0) - menutitle=menuput; - else -- cgit v1.2.3