diff options
Diffstat (limited to 'src/lib/formats/imageutl.cpp')
-rw-r--r-- | src/lib/formats/imageutl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/imageutl.cpp b/src/lib/formats/imageutl.cpp index e6386da44c8..2bf17be849c 100644 --- a/src/lib/formats/imageutl.cpp +++ b/src/lib/formats/imageutl.cpp @@ -168,7 +168,7 @@ void image_specify_extension(char *buffer, size_t buffer_len, const char *extens len = strlen(buffer); /* be aware that extension can be NULL */ - if (extension != NULL) + if (extension != nullptr) { while(extension[extension_pos] != '\0') { |