浏览代码

Fix warning

master
JustAnotherArchivist 1年前
父节点
当前提交
2163d745fd
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      http-response-bodies.c

+ 1
- 1
http-response-bodies.c 查看文件

@@ -78,7 +78,7 @@ int main(int argc, char* argv[]) {
checkstate:
DEBUG_PRINTF("Have %zu bytes of buffer (at %p)\n", n, (void*)bufp);
DEBUG_PRINTF("Beginning of buffer: ");
for (int i = 0; i < (n > 64 ? 64 : n); ++i) DEBUG_PRINTF(isprint(*(bufp + i)) ? "%c" : "\\x%02x", *(bufp + i) & 0xFF);
for (unsigned int i = 0; i < (n > 64 ? 64 : n); ++i) DEBUG_PRINTF(isprint(*(bufp + i)) ? "%c" : "\\x%02x", *(bufp + i) & 0xFF);
DEBUG_PRINTF("\n");
if (n == 0) {
break;


正在加载...
取消
保存