From 29d2930c5a2e4d7978e5f4d10916d781fe22af1f Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Sun, 21 Jun 2009 20:30:36 +0000 Subject: Use static for forward decl of static arrays instead of extern which made newer versions of gcc complain about mixing static and non-static decls. ok miod@ --- sys/dev/wsfont/qvss8x15.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/wsfont/qvss8x15.h') diff --git a/sys/dev/wsfont/qvss8x15.h b/sys/dev/wsfont/qvss8x15.h index 8f4d931b440..09cdc9a05e4 100644 --- a/sys/dev/wsfont/qvss8x15.h +++ b/sys/dev/wsfont/qvss8x15.h @@ -1,4 +1,4 @@ -/* $OpenBSD: qvss8x15.h,v 1.3 2006/07/24 20:31:45 miod Exp $ */ +/* $OpenBSD: qvss8x15.h,v 1.4 2009/06/21 20:30:35 jsg Exp $ */ /* $NetBSD: qvss8x15.h,v 1.3 1999/05/18 21:51:58 ad Exp $ */ /*- @@ -69,7 +69,7 @@ * * ************************************************************************/ -extern u_char qvss8x15_data[]; +static u_char qvss8x15_data[]; struct wsdisplay_font qvss8x15 = { "QVSS", /* typeface name */ -- cgit v1.2.3