Skip to content

Commit

Permalink
Update main.c
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
William committed Jan 23, 2021
1 parent 1bd5200 commit bf9d99b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/main.c
Expand Up @@ -117,7 +117,7 @@ int main(int argc, char **argv)
case 'n':
pid = find_process(optarg);
if (pid == INVALID_PID) {
fprintf(stderr, "counld not find the process: %s\n", optarg);
fprintf(stderr, "could not find the process: %s\n", optarg);
return 1;
}
printf("targeting process \"%s\" with pid %d\n", optarg, pid);
Expand Down

0 comments on commit bf9d99b

Please sign in to comment.