summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/chd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/chd.cpp')
-rw-r--r--src/lib/util/chd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/util/chd.cpp b/src/lib/util/chd.cpp
index 3a97c6ce0fe..ce4396eac29 100644
--- a/src/lib/util/chd.cpp
+++ b/src/lib/util/chd.cpp
@@ -331,7 +331,7 @@ sha1_t chd_file::sha1()
}
catch (chd_error &)
{
- // on failure, return NULL
+ // on failure, return nullptr
return sha1_t::null;
}
}
@@ -364,7 +364,7 @@ sha1_t chd_file::raw_sha1()
}
catch (chd_error &)
{
- // on failure, return NULL
+ // on failure, return nullptr
return sha1_t::null;
}
}
@@ -397,7 +397,7 @@ sha1_t chd_file::parent_sha1()
}
catch (chd_error &)
{
- // on failure, return NULL
+ // on failure, return nullptr
return sha1_t::null;
}
}