From c278e2da0cf9aee161e23771125629bdfe8d5d89 Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Tue, 20 Mar 2018 19:19:56 +0100 Subject: blogc: common: replace unsigned int with size_t --- src/blogc-runserver/httpd-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/blogc-runserver/httpd-utils.c') diff --git a/src/blogc-runserver/httpd-utils.c b/src/blogc-runserver/httpd-utils.c index e67afb1..7a49bf2 100644 --- a/src/blogc-runserver/httpd-utils.c +++ b/src/blogc-runserver/httpd-utils.c @@ -90,7 +90,7 @@ const char* br_get_extension(const char *filename) { const char *ext = NULL; - unsigned int i; + size_t i; for (i = strlen(filename); i > 0; i--) { if (filename[i] == '.') { ext = filename + i + 1; -- cgit v1.2.3-18-g5258