1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-21 04:30:37 -04:00
ports/misc/estic/files/patch-window.cc
Dirk Meyer b111b35ebf - add LICENSE
- use distribution patch
- extend pkg-message
- protect config file
- cleanup staged install
- make portlint happier
2017-01-29 14:47:22 +00:00

20 lines
661 B
C++

--- spunk/window.cc.orig 1997-01-26 17:17:38 UTC
+++ spunk/window.cc
@@ -1432,7 +1432,7 @@ void Window::Write (int X, int Y, const
// 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 @@ void Window::CWrite (int X, int Y, const
// 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