Skip to content

Commit

Permalink
core: main - typos in log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Dec 30, 2023
1 parent 9410ce3 commit a268f07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2193,7 +2193,7 @@ int main(int argc, char **argv)
/* safety check for upper limit of 1TB */
if(l1 <= 0 || l1 > 1024L * 1024) {
fprintf(stderr,
"our of limits private mem size number: -M %s\n",
"out of limits private mem size number: -M %s\n",
optarg);
goto error;
}
Expand Down Expand Up @@ -2333,7 +2333,7 @@ int main(int argc, char **argv)
}
/* safety check for upper limit of 16TB */
if(l1 <= 0 || l1 > 16L * 1024 * 1024) {
fprintf(stderr, "our of limits shmem size number: -m %s\n",
fprintf(stderr, "out of limits shmem size number: -m %s\n",
optarg);
goto error;
}
Expand Down

0 comments on commit a268f07

Please sign in to comment.