Skip to content

Commit

Permalink
Fix ARM-32 compile warning
Browse files Browse the repository at this point in the history
(cherry picked from commit ecd5676)
  • Loading branch information
liviuchircu committed Feb 7, 2023
1 parent 2f28803 commit 3c64738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/parse_content.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ char* parse_content_length( char* buffer, char* end, int* length)
return p;
error:
LM_ERR("parse error at pos %ld, dec-char: %d, start/p/end: %p/%p/%p\n",
p - buffer, p < end && (end-buffer) ? *p:-1, buffer, p, end);
(long)(p - buffer), p < end && (end-buffer) ? *p:-1, buffer, p, end);
return NULL;
}

Expand Down

0 comments on commit 3c64738

Please sign in to comment.