diff options
author | Michael Czigler <37268479+mcpcpc@users.noreply.github.com> | 2020-09-15 13:41:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 13:41:29 -0400 |
commit | ea0c7926e724d49a379a8faeb6f7128636093449 (patch) | |
tree | 1876084e9786c1e6fdd58c887c574c58db06869e /kirc.c | |
parent | replace AF_INET with AF_UNSPEC (diff) | |
download | kirc-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |