Skip to content

Commit bdf3ac4

Browse files
committed
fix error message
1 parent cc65d5d commit bdf3ac4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tbprobe.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -704,8 +704,8 @@ static bool test_tb(const char *str, const char *suffix)
704704
size_t size = file_size(fd);
705705
close_tb(fd);
706706
if ((size & 63) != 16) {
707-
fprintf(stderr, "Incomplete tablebase file %s.%s\n", str, suffix);
708-
printf("info string Incomplete tablebase file %s.%s\n", str, suffix);
707+
fprintf(stderr, "Incomplete tablebase file %s%s\n", str, suffix);
708+
printf("info string Incomplete tablebase file %s%s\n", str, suffix);
709709
fd = FD_ERR;
710710
}
711711
}

0 commit comments

Comments
 (0)