From dd56d3faa82bf20c1ea255b9f8dcbb497f4d8b2c Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Fri, 4 Apr 2025 00:16:49 +0200 Subject: Added cast --- FICS/network.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FICS/network.c b/FICS/network.c index b2d420a..1e97e20 100644 --- a/FICS/network.c +++ b/FICS/network.c @@ -267,7 +267,7 @@ net_send_string(int fd, char *str, int format) if ((which = findConnection(fd)) < 0) return -1; while (*str) { - const int upbound = strlen(str); + const int upbound = (int)strlen(str); for (i = 0; i < upbound && str[i] >= ' '; i++) { /* null */; -- cgit v1.2.3