Remove compilation warning

converting to non pointer type "int" from NULL (-Wconversion-null)
This commit is contained in:
ManoloFLTK
2024-01-13 21:08:41 +01:00
parent 92b48c3936
commit a6e5b5b35b
+1 -1
View File
@@ -259,7 +259,7 @@ void Fl_Shared_Image::release() {
delete[] images_; delete[] images_;
images_ = 0; images_ = 0;
alloc_images_ = NULL; alloc_images_ = 0;
} }
#ifdef SHIM_DEBUG #ifdef SHIM_DEBUG
printf("<---- Fl_Shared_Image::release() %016x\n", this); printf("<---- Fl_Shared_Image::release() %016x\n", this);