From 950d8d13358720e33173fdf92e0cc8241a9b31a5 Mon Sep 17 00:00:00 2001 From: Ali Gholami Rudi Date: Mon, 20 Jul 2009 23:42:01 +0430 Subject: [PATCH] term: change mode type to unsigned int --- term.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/term.h b/term.h index 623993c..58fcae8 100644 --- a/term.h +++ b/term.h @@ -4,7 +4,7 @@ struct term_state { int row, col; int fg, bg; int top, bot; - unsigned long mode; + unsigned int mode; }; struct term { -- 2.11.4.GIT