diff options
Diffstat (limited to 'Userland/Utilities/pmap.cpp')
-rw-r--r-- | Userland/Utilities/pmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/pmap.cpp b/Userland/Utilities/pmap.cpp index e0a6a17611..b752ecb3cb 100644 --- a/Userland/Utilities/pmap.cpp +++ b/Userland/Utilities/pmap.cpp @@ -70,7 +70,7 @@ int main(int argc, char** argv) auto file_contents = file->read_all(); auto json = JsonValue::from_string(file_contents); - ASSERT(json.has_value()); + VERIFY(json.has_value()); Vector<JsonValue> sorted_regions = json.value().as_array().values(); quick_sort(sorted_regions, [](auto& a, auto& b) { |