From ea0c7926e724d49a379a8faeb6f7128636093449 Mon Sep 17 00:00:00 2001 From: Michael Czigler <37268479+mcpcpc@users.noreply.github.com> Date: Tue, 15 Sep 2020 13:41:29 -0400 Subject: change 'verb' variable from size_t to int --- kirc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kirc.c') diff --git a/kirc.c b/kirc.c index 5a11817..8f23bf6 100644 --- a/kirc.c +++ b/kirc.c @@ -20,7 +20,7 @@ [-W columns] [-o path] [-h|v|V]" static int conn; /* connection socket */ -static size_t verb = 0; /* verbose output (e.g. raw stream) */ +static int verb = 0; /* verbose output (e.g. raw stream) */ static size_t cmax = 80; /* max number of chars per line */ static size_t gutl = 10; /* max char width of left column */ static char * host = "irc.freenode.org"; /* irc host address */ -- cgit v1.2.3