aboutsummaryrefslogtreecommitdiff
path: root/filesystems/httpdirfs/files/patch-src_link.c
Commit message (Collapse)AuthorAgeFilesLines
* filesystems/httpdirfs: fix build on 32-bitsPiotr Kubaj2025-01-121-0/+11
../src/link.c:998:55: error: format specifies type 'unsigned long' but the argument has type 'size_t' (aka 'unsigned int') [-Werror,-Wformat] 998 | snprintf(range_str, sizeof(range_str), "%lu-%lu", start, end); | ~~~ ^~~~~ | %zu ../src/link.c:998:62: error: format specifies type 'unsigned long' but the argument has type 'size_t' (aka 'unsigned int') [-Werror,-Wformat] 998 | snprintf(range_str, sizeof(range_str), "%lu-%lu", start, end); | ~~~ ^~~ | %zu 2 errors generated.