Corrected typo.

This commit is contained in:
wtc%netscape.com 2000-06-03 00:14:32 +00:00
parent 579fd995b8
commit 4ef826d82c
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ int main(int argc, char **argv)
}
(*counter_addr)++;
if (PR_PostSemaphore(sem2) == PR_FAILURE) {
fprintf(stderr, "PR_WaitSemaphore failed\n");
fprintf(stderr, "PR_PostSemaphore failed\n");
exit(1);
}
}

View File

@ -105,7 +105,7 @@ int main(int argc, char **argv)
}
(*counter_addr)++;
if (PR_PostSemaphore(sem1) == PR_FAILURE) {
fprintf(stderr, "PR_WaitSemaphore failed\n");
fprintf(stderr, "PR_PostSemaphore failed\n");
exit(1);
}
}