From f6c1ca30f6eaa399cbb867155ce8594c12857907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Mon, 7 Jun 2021 22:56:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=A4=A7=E6=89=93=E5=8D=B0=E9=95=BF?= =?UTF-8?q?=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.c b/server.c index 97dd1fb..41350d1 100644 --- a/server.c +++ b/server.c @@ -292,11 +292,11 @@ void execute_cgi(int client, const char *path, const char *method, const char *q off_t get_file_size(const char *filepath) { struct stat statbuf; if (stat(filepath, &statbuf) == 0) { - printf("file size: %u\n", statbuf.st_size); + printf("file size: %lu\n", statbuf.st_size); if(statbuf.st_size == 0) { FILE* fp = fopen(filepath, "ab+"); off_t sz = ftell(fp); - printf("ftell size: %u\n", sz); + printf("ftell size: %lu\n", sz); return sz; } return statbuf.st_size;