Fixed typo

Co-authored-by: Aarni Koskela <akx@iki.fi>
This commit is contained in:
Andrew Murray 2023-03-18 22:47:04 +11:00 committed by GitHub
parent b3d7823740
commit c7d4d1f75a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ PyInit__imagingtk(void) {
m = PyModule_Create(&module_def);
if (load_tkinter_funcs() != 0) {
Py_DECREF(m);
return NULL;;
return NULL;
}
return m;
}