From 13e4c7ef09c2a49997f2d0ad6cbf5371b7ea1979 Mon Sep 17 00:00:00 2001 From: fcambus Date: Tue, 13 Jun 2017 08:00:24 +0000 Subject: [PATCH] Increase WSFONT_NAME_SIZE size, this will allow storing longer font names in wsdisplay_font structures. OK deraadt@ --- sys/dev/wscons/wsconsio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/wscons/wsconsio.h b/sys/dev/wscons/wsconsio.h index 121ef0d7727..b3e5add95fd 100644 --- a/sys/dev/wscons/wsconsio.h +++ b/sys/dev/wscons/wsconsio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wsconsio.h,v 1.81 2017/06/06 19:47:22 bru Exp $ */ +/* $OpenBSD: wsconsio.h,v 1.82 2017/06/13 08:00:24 fcambus Exp $ */ /* $NetBSD: wsconsio.h,v 1.74 2005/04/28 07:15:44 martin Exp $ */ /* @@ -54,7 +54,7 @@ #define WSSCREEN_NAME_SIZE 16 #define WSEMUL_NAME_SIZE 16 -#define WSFONT_NAME_SIZE 16 +#define WSFONT_NAME_SIZE 32 /* * Common event structure (used by keyboard and mouse) -- 2.20.1