summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index bc4a442..5fc46fe 100755
--- a/configure
+++ b/configure
@@ -31003,7 +31003,7 @@ if test `eval echo '${'$as_ac_var'}'` = yes; then
cat >>confdefs.h <<_ACEOF
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
- echo "$as_me:$LINENO: checking if vsnprintf returns correct value" >&5
+ echo "$as_me:$LINENO: checking if vsnprintf returns correct value" >&5
echo $ECHO_N "checking if vsnprintf returns correct value... $ECHO_C" >&6
if test "${hdf5_cv_vsnprintf_works+set}" = set; then
@@ -31032,7 +31032,7 @@ int test_vsnprintf(const char *fmt,...)
ret=vsnprintf(s,16,"%s",ap);
va_end(ap);
- return(ret==15 ? 1 : 0);
+ return(ret!=42 ? 1 : 0);
}
int main(void)