changeset 627:e3a23e9242a0

NULL instead of 0
author Franz Glasner <fzglas.hg@dom66.de>
date Thu, 13 Jan 2022 22:27:20 +0100
parents b54f2932415f
children c56971e85496
files configmix/_speedups.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configmix/_speedups.c	Thu Jan 13 22:15:50 2022 +0100
+++ b/configmix/_speedups.c	Thu Jan 13 22:27:20 2022 +0100
@@ -1015,7 +1015,7 @@
     }
 
     result = PyList_New(0);
-    if (result == 0) {
+    if (result == NULL) {
         return NULL;
     }