mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 04:30:37 -04:00
- use distribution patch - extend pkg-message - protect config file - cleanup staged install - make portlint happier
20 lines
661 B
C++
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
|