diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2021-06-05 22:00:00 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2021-06-05 22:33:08 -0400 |
commit | a098bd60310ce57f188cc36131540bdc1a4a6fec (patch) | |
tree | 331436d28ac72c3057f26c7342138c645812ea79 /games-rpg/freedroid/files | |
parent | games-rpg/freedroid: add 1.2.1, EAPI-7 bump (diff) | |
download | gentoo-a098bd60310ce57f188cc36131540bdc1a4a6fec.tar.gz gentoo-a098bd60310ce57f188cc36131540bdc1a4a6fec.tar.bz2 gentoo-a098bd60310ce57f188cc36131540bdc1a4a6fec.zip |
games-rpg/freedroid: drop 1.0.2-r1
Has issues with gcc10 and experiencing random segfaults even if built.
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-rpg/freedroid/files')
-rw-r--r-- | games-rpg/freedroid/files/freedroid-1.0.2-format.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/games-rpg/freedroid/files/freedroid-1.0.2-format.patch b/games-rpg/freedroid/files/freedroid-1.0.2-format.patch deleted file mode 100644 index 4dbf96bda3f0..000000000000 --- a/games-rpg/freedroid/files/freedroid-1.0.2-format.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- a/src/init.c 2015-10-24 17:37:24.431514375 +0200 -+++ b/src/init.c 2015-10-24 17:37:43.057157826 +0200 -@@ -554,13 +554,13 @@ - * following gnu-coding standards for command line interfaces */ - case 'v': - printf ("\n%s %s \n", PACKAGE, VERSION); -- printf (copyright); -+ printf ("%s", copyright); - exit (0); - break; - - case 'h': - case '?': -- printf (usage_string); -+ printf ("%s", usage_string); - exit (0); - break; - ---- a/src/misc.c 2015-10-24 17:37:54.368941282 +0200 -+++ b/src/misc.c 2015-10-24 17:38:10.202638172 +0200 -@@ -889,7 +889,7 @@ - if (db_level <= debug_level) - { - vsnprintf (buffer, 5000, fmt, args); -- fprintf (stderr, buffer); -+ fprintf (stderr, "%s", buffer); - fflush (stderr); - } - |