From: Chris Hanson Date: Sat, 20 May 1995 03:08:13 +0000 (+0000) Subject: Eliminate compiler warning. X-Git-Tag: 20090517-FFI~6291 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=bc244632de10b3d510f0eee5637d889bf7ebb0fe;p=mit-scheme.git Eliminate compiler warning. --- diff --git a/v7/src/microcode/os2pmcon.c b/v7/src/microcode/os2pmcon.c index 9f29ed82d..bf8f5340f 100644 --- a/v7/src/microcode/os2pmcon.c +++ b/v7/src/microcode/os2pmcon.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: os2pmcon.c,v 1.13 1995/05/20 02:40:20 cph Exp $ +$Id: os2pmcon.c,v 1.14 1995/05/20 03:08:13 cph Exp $ Copyright (c) 1994-95 Massachusetts Institute of Technology @@ -162,7 +162,7 @@ void OS2_console_font_change_hook (font_metrics_t * metrics) { font_metrics_t * copy = (OS_malloc (sizeof (font_metrics_t))); - FASTCOPY (metrics, copy, (sizeof (font_metrics_t))); + FASTCOPY (((char *) metrics), ((char *) copy), (sizeof (font_metrics_t))); grab_console_lock (); OS_free (console_metrics); console_metrics = copy;