summary refs log tree commit diff
path: root/chat.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--chat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/chat.c b/chat.c
index 318a379..ef135bc 100644
--- a/chat.c
+++ b/chat.c
@@ -63,7 +63,7 @@ enum Color idColors[IDCap] = {
 	[Network] = Gray,
 };
 
-size_t idNext = Network + 1;
+uint idNext = Network + 1;
 
 struct Network network;
 struct Self self = { .color = Default };
d> 2019-07-11Factor out clearJune McEnroe 2019-07-11Add bright option to shottyJune McEnroe 2019-07-11Output <b>, <i>, <u> in shottyJune McEnroe 2019-07-10Ignore SM and RMJune McEnroe 2019-07-09Add shotty man page and build itJune McEnroe 2019-07-09Add up -cJune McEnroe 2019-07-09Add options for default colors to shottyJune McEnroe 2019-07-08Use char literals consistentlyJune McEnroe