• Kirill A. Korinsky's avatar
    Fixed build on i386 macOS with clang-11 · c13343cf
    Kirill A. Korinsky authored
    Apparently, clang11 on i386 macOS uses `int` instead of `ssize_t` for
    `a- b` where bot `a` and `b` is `char`. It leads to an error:
    ```
    vtc_http.c:392:8: error: format specifies type 'ssize_t' (aka 'long') but the argument has type 'int' [-Werror,-Wformat]
                                p - hp->body, t, *p);
                                ^~~~~~~~~~~~
    ```
    c13343cf
vtc_http.c 43.7 KB