aboutsummaryrefslogtreecommitdiffstats
path: root/kirc.c
diff options
context:
space:
mode:
authorMichael Czigler <37268479+mcpcpc@users.noreply.github.com>2020-09-15 13:41:29 -0400
committerGitHub <noreply@github.com>2020-09-15 13:41:29 -0400
commitea0c7926e724d49a379a8faeb6f7128636093449 (patch)
tree1876084e9786c1e6fdd58c887c574c58db06869e /kirc.c
parentreplace AF_INET with AF_UNSPEC (diff)
downloadkirc-ea0c7926e724d49a379a8faeb6f7128636093449.tar.gz
kirc-ea0c7926e724d49a379a8faeb6f7128636093449.tar.bz2
kirc-ea0c7926e724d49a379a8faeb6f7128636093449.tar.xz
kirc-ea0c7926e724d49a379a8faeb6f7128636093449.tar.zst
kirc-ea0c7926e724d49a379a8faeb6f7128636093449.zip
change 'verb' variable from size_t to int
Diffstat (limited to 'kirc.c')
-rw-r--r--kirc.c2
1 files changed, 1 insertions, 1 deletions
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 */