diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-01-13 21:08:41 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-01-13 21:08:41 +0100 |
| commit | a6e5b5b35bd3c0c11dda4829d49c4fad9d37bc61 (patch) | |
| tree | a60a943ce4cf2f8ba17ff0ce0de70180979ae7aa /src | |
| parent | 92b48c39364d35bcee4c81622508cce67bd553a3 (diff) | |
Remove compilation warning
converting to non pointer type "int" from NULL (-Wconversion-null)
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Shared_Image.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
