Skip to content

Commit

Permalink
Merge branch 'mitchblank-xcode12-autoconf-fixes'
Browse files Browse the repository at this point in the history
  • Loading branch information
royhills committed Dec 23, 2020
2 parents 866edea + c9ef056 commit b85ea4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acinclude.m4
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ int does_int64_work()
return 1;
}
main() {
exit(! does_int64_work());
return ! does_int64_work();
}],
[Ac_cachevar=yes],
[Ac_cachevar=no],
Expand Down Expand Up @@ -201,7 +201,7 @@ int does_int64_snprintf_work()
return 1;
}
main() {
exit(! does_int64_snprintf_work());
return ! does_int64_snprintf_work();
}],
[pgac_cv_snprintf_long_long_int_format=$pgac_format; break],
[],
Expand Down

0 comments on commit b85ea4c

Please sign in to comment.