From a05ca225716e84f78527ac5454eb576437e326e2 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sun, 15 Mar 2026 14:24:26 +0100 Subject: Compare against NULL --- FICS/obsproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'FICS/obsproc.c') 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) -- cgit v1.2.3