Eliminate compiler warning.
authorChris Hanson <org/chris-hanson/cph>
Sat, 20 May 1995 03:08:13 +0000 (03:08 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sat, 20 May 1995 03:08:13 +0000 (03:08 +0000)
v7/src/microcode/os2pmcon.c

index 9f29ed82d10de695dfffffea1cbf598bf8c89ec9..bf8f5340ff2acd7366fd7718641229f93892a0db 100644 (file)
@@ -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;