mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-06 03:05:29 -05:00
fix warnings in C stubs
This commit is contained in:
parent
022a495de3
commit
023805232f
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ CAMLprim value tiny_httpd_ws_apply_masking(value _mask_key, value _mask_offset,
|
||||||
CAMLparam5(_mask_key, _mask_offset, _buf, _offset, _len);
|
CAMLparam5(_mask_key, _mask_offset, _buf, _offset, _len);
|
||||||
|
|
||||||
char const *mask_key = String_val(_mask_key);
|
char const *mask_key = String_val(_mask_key);
|
||||||
char *buf = Bytes_val(_buf);
|
unsigned char *buf = Bytes_val(_buf);
|
||||||
intnat mask_offset = Int_val(_mask_offset);
|
intnat mask_offset = Int_val(_mask_offset);
|
||||||
intnat offset = Int_val(_offset);
|
intnat offset = Int_val(_offset);
|
||||||
intnat len = Int_val(_len);
|
intnat len = Int_val(_len);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue