From a6e5b5b35bd3c0c11dda4829d49c4fad9d37bc61 Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Sat, 13 Jan 2024 21:08:41 +0100 Subject: Remove compilation warning converting to non pointer type "int" from NULL (-Wconversion-null) --- src/Fl_Shared_Image.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Fl_Shared_Image.cxx b/src/Fl_Shared_Image.cxx index c052041f9..21aedd40a 100644 --- a/src/Fl_Shared_Image.cxx +++ b/src/Fl_Shared_Image.cxx @@ -259,7 +259,7 @@ void Fl_Shared_Image::release() { delete[] images_; images_ = 0; - alloc_images_ = NULL; + alloc_images_ = 0; } #ifdef SHIM_DEBUG printf("<---- Fl_Shared_Image::release() %016x\n", this); -- cgit v1.2.3