clang-tidy: modernize-use-nullptr
[geeqie.git] / src / editors.cc
index f3a2a53..3d47382 100644 (file)
@@ -1441,7 +1441,7 @@ const gchar *editor_get_name_unused(const gchar *key)
 {
        EditorDescription *editor = static_cast<EditorDescription *>(g_hash_table_lookup(editors, key));
 
-       if (!editor) return NULL;
+       if (!editor) return nullptr;
 
        return editor->name;
 }