diff options
| author | Markus Uhlin <markus@nifty-networks.net> | 2026-03-15 14:24:26 +0100 |
|---|---|---|
| committer | Markus Uhlin <markus@nifty-networks.net> | 2026-03-15 14:24:26 +0100 |
| commit | a05ca225716e84f78527ac5454eb576437e326e2 (patch) | |
| tree | cd85be80ab79562d0ab36d5efa7ba54cfee3b118 /FICS | |
| parent | affc2e4745f726568633c3d53c87dd629638abfa (diff) | |
Compare against NULL
Diffstat (limited to 'FICS')
| -rw-r--r-- | FICS/obsproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/obsproc.c b/FICS/obsproc.c index dc622ee..eeceffc 100644 --- a/FICS/obsproc.c +++ b/FICS/obsproc.c @@ -713,7 +713,7 @@ old_mail_moves(int p, int mail, param_list param) fp = fopen(fname, "r"); // old moves now looks in history to save mem // - DAV - if (!fp) { + if (fp == NULL) { pprintf(p, "There is no old game for %s.\n", parray[p1].name); if (!connected) |
