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 /configure | |
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)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |