configure: Fix compiler warning in config.log (integer from pointer)

warning: return makes integer from pointer without a cast

v2: Removed type cast.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
Stefan Weil 2011-12-17 17:46:02 +01:00 committed by Stefan Hajnoczi
parent 182eacc0fd
commit ef9a252442
1 changed files with 5 additions and 1 deletions

6
configure vendored
View File

@ -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