]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-109469: Silence compiler warnings on string comparisons in _testcapi (GH...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 2 Oct 2023 14:59:43 +0000 (07:59 -0700)
committerGitHub <noreply@github.com>
Mon, 2 Oct 2023 14:59:43 +0000 (16:59 +0200)
gh-109469: Silence compiler warnings on string comparisons in _testcapi (GH-109533)
(cherry picked from commit ed582a2ed980efba2d0da365ae37bff4a2b99873)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Modules/_testcapi/util.h

index 4cf7e226382bfcf30a0d416e57bb4a29c4f43abb..f26d7656a10138fb71928efff83d6dea4a692a9e 100644 (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. */