diff options
| author | Markus Uhlin <markus@nifty-networks.net> | 2026-03-23 20:17:39 +0100 |
|---|---|---|
| committer | Markus Uhlin <markus@nifty-networks.net> | 2026-03-23 20:17:39 +0100 |
| commit | 2a59f55e8c0039374ce9f7bd55a25af95609b321 (patch) | |
| tree | e6aad1a361242883a0f8dd84187755b233e8090c /FICS/playerdb.c | |
| parent | e69a766d7d72a3551dc8bde4926d98a06b4c7ee2 (diff) | |
Moved fprintf() calls and fixed hardcoded function names
Diffstat (limited to 'FICS/playerdb.c')
| -rw-r--r-- | FICS/playerdb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/FICS/playerdb.c b/FICS/playerdb.c index 5a6e2e7..03450c6 100644 --- a/FICS/playerdb.c +++ b/FICS/playerdb.c @@ -140,6 +140,8 @@ get_empty_slot(void) PUBLIC void player_array_init(void) { + (void) fprintf(stderr, "FICS: %s()\n", __func__); + for (int i = 0; i < PARRAY_SIZE; i++) parray[i].status = PLAYER_EMPTY; } |
