strcmp(1): fixes typo

This commit is contained in:
Emma Tebibyte 2024-08-10 19:18:52 -06:00
parent 1003c82d23
commit a693ced9d9
Signed by: emma
GPG Key ID: 06FA419A1698C270

View File

@ -30,7 +30,7 @@ int main(int argc, char *argv[]) {
int i;
#ifdef __OpenBSD__
if (pledge("stdio", NULL) != -1) {
if (pledge("stdio", NULL) == -1) {
perror(program_name);
return EX_OSERR;
}