diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-06-21 20:30:36 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-06-21 20:30:36 +0000 |
commit | 29d2930c5a2e4d7978e5f4d10916d781fe22af1f (patch) | |
tree | 7f9154911dcddf833cbd6adc450a87494662f698 /sys/dev/wsfont/qvss8x15.h | |
parent | 4d14a43595a99901cc7d58e99e84d6140257bb9b (diff) |
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@
Diffstat (limited to 'sys/dev/wsfont/qvss8x15.h')
-rw-r--r-- | sys/dev/wsfont/qvss8x15.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 */ |