From 1c8855d83ff1cb8040f3fccdb1e5d2f47e1d308d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 11 Dec 2022 15:23:05 +0000 Subject: gentoo auto-resync : 11:12:2022 - 15:23:05 --- .../emech-3.0.99_p20221123-fix-Wreturn-type.patch | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 net-irc/emech/files/emech-3.0.99_p20221123-fix-Wreturn-type.patch (limited to 'net-irc/emech/files/emech-3.0.99_p20221123-fix-Wreturn-type.patch') diff --git a/net-irc/emech/files/emech-3.0.99_p20221123-fix-Wreturn-type.patch b/net-irc/emech/files/emech-3.0.99_p20221123-fix-Wreturn-type.patch new file mode 100644 index 000000000000..0413a61dcad8 --- /dev/null +++ b/net-irc/emech/files/emech-3.0.99_p20221123-fix-Wreturn-type.patch @@ -0,0 +1,34 @@ +QA warns about non-void functions returning no value. Both function are not used +anywhere in the code anyway. + +Pascal Jäger (2022-11-23) + +--- a/src/spy.c ++++ b/src/spy.c +@@ -460,7 +460,7 @@ void end_redirect(void) + char *urlhost(const char *url) + { + char copy[strlen(url)]; +- const char *end,*beg,*dst; ++ char *end,*beg,*dst; + int n = 0; + + beg = end = url; +@@ -481,6 +481,7 @@ char *urlhost(const char *url) + end++; + } + stringcpy_n(copy,beg,(end-beg)); ++ return beg; + #ifdef DEBUG + debug("(urlhost) host = %s\n",copy); + #endif +--- a/src/toybox.c ++++ b/src/toybox.c +@@ -196,6 +196,7 @@ int read_bigcharset(char *fname) + int read_ascii(char *rest) + { + to_user_q(global_from,FMT_PLAIN,rest); ++ return (0); + } + + #ifdef TRIVIA -- cgit v1.2.3