summaryrefslogtreecommitdiff
path: root/modules/jsonrpc/jsonrpc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/jsonrpc/jsonrpc.cpp')
-rw-r--r--modules/jsonrpc/jsonrpc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/jsonrpc/jsonrpc.cpp b/modules/jsonrpc/jsonrpc.cpp
index 014b65e3e2..393269d422 100644
--- a/modules/jsonrpc/jsonrpc.cpp
+++ b/modules/jsonrpc/jsonrpc.cpp
@@ -119,7 +119,7 @@ Variant JSONRPC::process_action(const Variant &p_action, bool p_process_arr_elem
id = dict["id"];
}
- if (object == NULL || !object->has_method(method)) {
+ if (object == nullptr || !object->has_method(method)) {
ret = make_response_error(JSONRPC::METHOD_NOT_FOUND, "Method not found", id);
} else {
Variant call_ret = object->callv(method, args);