From patchwork Mon Dec 19 11:12:30 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [09/17] configure: Fix compiler warning in config.log (integer from pointer) Date: Mon, 19 Dec 2011 01:12:30 -0000 From: Stefan Hajnoczi X-Patchwork-Id: 132202 Message-Id: <1324293158-25433-10-git-send-email-stefanha@linux.vnet.ibm.com> To: Cc: Stefan Weil , Anthony Liguori , Stefan Hajnoczi From: Stefan Weil warning: return makes integer from pointer without a cast v2: Removed type cast. Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- configure | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 93c6cbe..773df6a 100755 --- a/configure +++ b/configure @@ -1841,7 +1841,11 @@ if test "$curses" != "no" ; then #ifdef __OpenBSD__ #define resize_term resizeterm #endif -int main(void) { resize_term(0, 0); return curses_version(); } +int main(void) { + const char *s = curses_version(); + resize_term(0, 0); + return s != 0; +} EOF for curses_lib in $curses_list; do if compile_prog "" "$curses_lib" ; then