diff options
author | Sam James <sam@cmpct.info> | 2022-11-05 08:30:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-05 08:30:31 (GMT) |
commit | 12078e78f6e4a21f344e4eaff529e1ff3b97734f (patch) | |
tree | 088900dd5db0a57923cad0e78f540f50aeb5937b | |
parent | d04899abb0da4cc7c0a390f5bc52d57ace8955fd (diff) | |
download | cpython-12078e78f6e4a21f344e4eaff529e1ff3b97734f.zip cpython-12078e78f6e4a21f344e4eaff529e1ff3b97734f.tar.gz cpython-12078e78f6e4a21f344e4eaff529e1ff3b97734f.tar.bz2 |
gh-99086: Fix implicit int compiler warning in configure check for PTHREAD_SCOPE_SYSTEM (#99085)
-rw-r--r-- | Misc/NEWS.d/next/Build/2022-11-04-02-58-10.gh-issue-99086.DV_4Br.rst | 1 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/Misc/NEWS.d/next/Build/2022-11-04-02-58-10.gh-issue-99086.DV_4Br.rst b/Misc/NEWS.d/next/Build/2022-11-04-02-58-10.gh-issue-99086.DV_4Br.rst new file mode 100644 index 0000000..e320ecf --- /dev/null +++ b/Misc/NEWS.d/next/Build/2022-11-04-02-58-10.gh-issue-99086.DV_4Br.rst @@ -0,0 +1 @@ +Fix ``-Wimplicit-int`` compiler warning in :program:`configure` check for ``PTHREAD_SCOPE_SYSTEM``. @@ -15350,7 +15350,7 @@ else void *foo(void *parm) { return NULL; } - main() { + int main() { pthread_attr_t attr; pthread_t id; if (pthread_attr_init(&attr)) return (-1); diff --git a/configure.ac b/configure.ac index 0ca5e3f..aebe240 100644 --- a/configure.ac +++ b/configure.ac @@ -4361,7 +4361,7 @@ if test "$posix_threads" = "yes"; then void *foo(void *parm) { return NULL; } - main() { + int main() { pthread_attr_t attr; pthread_t id; if (pthread_attr_init(&attr)) return (-1); |