diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-09 13:11:28 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-09 13:11:28 +0100 |
commit | 3d6927d8796096b1c808a6ef06912bdf7fe7da04 (patch) | |
tree | e1dfbfb685755062b5b45cbca821f9fa80a549df /FICS | |
parent | 79b59f9b30fb6a1fdf8c3efb446271f7cb00d434 (diff) |
Output the filename
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/eco.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -155,7 +155,7 @@ void ECO_init() sprintf(filename, "%s/eco999.idx", book_dir); fp= fopen(filename, "r"); if (!fp) { - fprintf(stderr, "Could not open ECO file\n"); + fprintf(stderr, "Could not open ECO file (%s)\n", filename); exit(1); } while (!feof(fp)) { |