1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

Fix missing _Noreturn declaration specifiers in src/main.c

Reported-by: Gisle Vanem <gvanem@yahoo.no>
This commit is contained in:
Tim Rühsen 2014-11-11 16:34:57 +01:00
parent 2457715e7d
commit 9823dc1989
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2014-11-11 Tim Ruehsen <tim.ruehsen@gmx.de>
* main.c: Fix missing _Noreturn declaration specifiers
Reported-by: Gisle Vanem <gvanem@yahoo.no>
2014-11-10 Tim Ruehsen <tim.ruehsen@gmx.de> 2014-11-10 Tim Ruehsen <tim.ruehsen@gmx.de>
* openssl.c: Fix compile-time check for TLSv1.1 and TLSv1.2 * openssl.c: Fix compile-time check for TLSv1.1 and TLSv1.2

View File

@ -117,8 +117,8 @@ i18n_initialize (void)
/* Definition of command-line options. */ /* Definition of command-line options. */
static void print_help (void); static void _Noreturn print_help (void);
static void print_version (void); static void _Noreturn print_version (void);
#ifdef HAVE_SSL #ifdef HAVE_SSL
# define IF_SSL(x) x # define IF_SSL(x) x