Userspace: u8sum fix error message

This commit is contained in:
Bananymous 2023-06-19 10:31:23 +03:00
parent 84ecf861cd
commit 328d67f551
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ int main(int argc, char** argv)
FILE* fp = fopen(argv[i], "r");
if (fp == nullptr)
{
perror("nullptr");
perror("fopen");
continue;
}