From c8bdaa8c5592bd92f3913d8dd7ce735464c376d3 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 16 Oct 1994 02:37:57 +0000 Subject: [PATCH] (load_unwind): Cast argument of fclose. --- src/lread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lread.c b/src/lread.c index 72283bde8ab..a64a01f8fd6 100644 --- a/src/lread.c +++ b/src/lread.c @@ -454,8 +454,8 @@ static Lisp_Object load_unwind (stream) /* used as unwind-protect function in load */ Lisp_Object stream; { - fclose (XFASTINT (XCONS (stream)->car) << 16 - | XFASTINT (XCONS (stream)->cdr)); + fclose ((FILE *) (XFASTINT (XCONS (stream)->car) << 16 + | XFASTINT (XCONS (stream)->cdr))); if (--load_in_progress < 0) load_in_progress = 0; return Qnil; } -- 2.39.5