From 7b57fd26756051310bd252ecbc2569e007f12e5c Mon Sep 17 00:00:00 2001 From: Ryo Ota Date: Mon, 31 Jan 2022 22:29:29 +0900 Subject: [PATCH] Use uint16 in winsize_unsupported.go (#136) --- winsize_unsupported.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsize_unsupported.go b/winsize_unsupported.go index c4bff44..73fb080 100644 --- a/winsize_unsupported.go +++ b/winsize_unsupported.go @@ -9,7 +9,7 @@ import ( // Winsize is a dummy struct to enable compilation on unsupported platforms. type Winsize struct { - Rows, Cols, X, Y uint + Rows, Cols, X, Y uint16 } // Setsize resizes t to s.