Skip to content

Commit

Permalink
fixed NULL -> nullptr
Browse files Browse the repository at this point in the history
  • Loading branch information
robehn committed Mar 20, 2024
1 parent d085187 commit 3a82dd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/os/posix/os_posix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ void* os::get_default_process_handle() {

void* os::dll_lookup(void* handle, const char* name) {
void* ret = dlsym(handle, name);
if (ret == NULL) {
if (ret == nullptr) {
const char* tmp = dlerror();
log_debug(os)("Symbol %s not found in dll: %s", name, tmp);
}
Expand Down

0 comments on commit 3a82dd2

Please sign in to comment.