Skip to content

Commit

Permalink
No idea how I overlooked that wl was unsigned.
Browse files Browse the repository at this point in the history
Doesn't change the logic however.
  • Loading branch information
bsdphk committed Apr 11, 2018
1 parent b5646ee commit acd9cab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/varnishd/http1/cache_http1_fsm.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ http1_reembark(struct worker *wrk, struct req *req)
static int v_matchproto_(vtr_minimal_response_f)
http1_minimal_response(struct req *req, uint16_t status)
{
size_t wl, l;
ssize_t wl, l;
char buf[80];
const char *reason;

Expand Down

0 comments on commit acd9cab

Please sign in to comment.