From 700b5d587015faa396b1149525b084960d6524c3 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sat, 15 Feb 2020 22:19:55 -0500 Subject: Replace small integers in size_t with uint --- chat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chat.c') 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 }; -- cgit 1.4.1