Skip to content

Commit

Permalink
Update strings
Browse files Browse the repository at this point in the history
  • Loading branch information
spinojara committed Apr 29, 2024
1 parent 1fe7816 commit 845431d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/epdbit.c
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ int main(int argc, char **argv) {

FILE *file = fopen(path, "w");
if (!file) {
fprintf(stderr, "error: failed to open file \"%s\"\n", path);
fprintf(stderr, "error: failed to open file '%s'\n", path);
return 1;
}

Expand Down
6 changes: 3 additions & 3 deletions src/genbit.c
Original file line number Diff line number Diff line change
Expand Up @@ -455,11 +455,11 @@ int main(int argc, char **argv) {
#ifdef SYZYGY
if (syzygy) {
if (!tb_init(syzygy)) {
fprintf(stderr, "error: init for tablebases failed for path \"%s\".\n", syzygy);
fprintf(stderr, "error: init for tablebases failed for path '%s'.\n", syzygy);
return 1;
}
if (TB_LARGEST == 0) {
fprintf(stderr, "error: no tablebases found for path \"%s\".\n", syzygy);
fprintf(stderr, "error: no tablebases found for path '%s'.\n", syzygy);
return 2;
}
printf("Tablebases found for up to %d pieces.\n", TB_LARGEST);
Expand Down Expand Up @@ -501,7 +501,7 @@ int main(int argc, char **argv) {

FILE *f = fopen(path, "wb");
if (!f) {
fprintf(stderr, "error: failed to open file \"%s\"\n", path);
fprintf(stderr, "error: failed to open file '%s'\n", path);
return 3;
}

Expand Down

0 comments on commit 845431d

Please sign in to comment.