diff options
Diffstat (limited to 'Userland/Utilities/grep.cpp')
-rw-r--r-- | Userland/Utilities/grep.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/grep.cpp b/Userland/Utilities/grep.cpp index 97d26d49e9..ecf73fb49c 100644 --- a/Userland/Utilities/grep.cpp +++ b/Userland/Utilities/grep.cpp @@ -195,7 +195,7 @@ int main(int argc, char** argv) ssize_t nread = 0; ScopeGuard free_line = [line] { free(line); }; while ((nread = getline(&line, &line_len, stdin)) != -1) { - ASSERT(nread > 0); + VERIFY(nread > 0); StringView line_view(line, nread - 1); bool is_binary = line_view.contains(0); |