diff options
author | 2015-12-04 07:06:18 +0100 | |
---|---|---|
committer | 2015-12-04 07:06:18 +0100 | |
commit | 5a2f80dcde2e76356bf568f1e2d71b054a7db45b (patch) | |
tree | 31e8369980a2e4548223f529c31e8ca6ade5ce20 /src/lib/formats/imageutl.cpp | |
parent | 41681c1703244abe68cbcf3096ca259bd061cc08 (diff) |
clang-modernize part 5
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') { |