blob: 02dcbc6e9063bfe0a525bf8cc2399f78c705422c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-aw,v 1.1 2001/10/14 17:19:59 tron Exp $
--- ../spunk/window.cc.orig Sun Jan 26 18:17:38 1997
+++ ../spunk/window.cc Sun Oct 14 19:15:25 2001
@@ -1432,7 +1432,7 @@
// Write a string to the inner window. Note: Attr is an index, not a real
// attribute !
{
- const BufSize = 256;
+ const int BufSize = 256;
u16 Buf [256];
// Check if the given string is empty
@@ -1554,7 +1554,7 @@
// Write a string to the inner window. Note: Attr is an index, not a real
// attribute !
{
- const BufSize = 256;
+ const int BufSize = 256;
u16 Buf [BufSize];
// If the Y coord is outside the inner window, there is nothing to do
|