gh-109469: Silence compiler warnings on string comparisons in _testcapi (GH-109533)

This commit is contained in:
Serhiy Storchaka 2023-09-19 08:12:29 +03:00 committed by GitHub
parent beb5ec5817
commit ed582a2ed9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,8 @@
} while (0)
/* Marker to check that pointer value was set. */
#define UNINITIALIZED_PTR ((void *)"uninitialized")
static const char uninitialized[] = "uninitialized";
#define UNINITIALIZED_PTR ((void *)uninitialized)
/* Marker to check that Py_ssize_t value was set. */
#define UNINITIALIZED_SIZE ((Py_ssize_t)236892191)
/* Marker to check that integer value was set. */