From 208d4343ef9689e3b7e3e4ce81cae9987560d7fe Mon Sep 17 00:00:00 2001 From: uau Date: Sun, 1 Apr 2007 21:59:54 +0000 Subject: "()" to "(void)" function param list fixes patch from Stefan Huehner, stefan huehner org git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22904 b3059339-0415-0410-9bf9-f77b7e298cf2 --- osdep/getch2-win.c | 2 +- osdep/getch2.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'osdep') diff --git a/osdep/getch2-win.c b/osdep/getch2-win.c index a20f1331f0..002d39d4a6 100644 --- a/osdep/getch2-win.c +++ b/osdep/getch2-win.c @@ -157,7 +157,7 @@ static const struct { { 0, NULL } }; -char* get_term_charset() +char* get_term_charset(void) { static char codepage[10]; unsigned i, cpno = GetConsoleOutputCP(); diff --git a/osdep/getch2.c b/osdep/getch2.c index a4226415f0..0d04de87b5 100644 --- a/osdep/getch2.c +++ b/osdep/getch2.c @@ -244,7 +244,7 @@ void getch2_disable(void){ } #ifdef USE_ICONV -char* get_term_charset() +char* get_term_charset(void) { char* charset = NULL; #ifdef USE_LANGINFO -- cgit v1.2.3