diff options
Diffstat (limited to '')
-rw-r--r-- | chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chat.c b/chat.c index e998812..9e3e374 100644 --- a/chat.c +++ b/chat.c @@ -64,7 +64,7 @@ enum Color idColors[IDCap] = { }; uint idNext = Network + 1; -struct Network network; +struct Network network = { .userLen = 9, .hostLen = 63 }; struct Self self = { .color = Default }; static const char *save; |