From 8b3e9e4459470412429dafc82ebf700d9d21cf7d Mon Sep 17 00:00:00 2001 From: Kimpe Andy Date: Fri, 2 Feb 2024 01:39:51 +0100 Subject: [PATCH] Delete debian/patches/6508c2b115f954afece4243e36e9e35e1d459ea8.patch --- ...c2b115f954afece4243e36e9e35e1d459ea8.patch | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 debian/patches/6508c2b115f954afece4243e36e9e35e1d459ea8.patch diff --git a/debian/patches/6508c2b115f954afece4243e36e9e35e1d459ea8.patch b/debian/patches/6508c2b115f954afece4243e36e9e35e1d459ea8.patch deleted file mode 100644 index 51d98e2b3..000000000 --- a/debian/patches/6508c2b115f954afece4243e36e9e35e1d459ea8.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 6508c2b115f954afece4243e36e9e35e1d459ea8 Mon Sep 17 00:00:00 2001 -From: zeromus -Date: Thu, 1 Feb 2024 04:26:27 -0500 -Subject: [PATCH] placate -Werror=format-security (probably) (re: #768) - ---- - desmume/src/commandline.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/desmume/src/commandline.cpp b/desmume/src/commandline.cpp -index cb6c23ac4..4c7bcc4a0 100644 ---- a/desmume/src/commandline.cpp -+++ b/desmume/src/commandline.cpp -@@ -397,7 +397,7 @@ bool CommandLine::parse(int argc,char **argv) - - if(opt_help) - { -- printf(help_string); -+ printf("%s",help_string); - exit(1); - } - -@@ -571,7 +571,7 @@ bool CommandLine::validate() - - void CommandLine::errorHelp(const char* binName) - { -- printerror(help_string); -+ printerror("%s",help_string); - } - - void CommandLine::process_movieCommands()