Commit f6ce3c9c authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Constify

parent a24ad62d
...@@ -312,7 +312,7 @@ static int v_matchproto_(vdp_bytes_f) ...@@ -312,7 +312,7 @@ static int v_matchproto_(vdp_bytes_f)
ved_vdp_esi_bytes(struct vdp_ctx *vdx, enum vdp_action act, void **priv, ved_vdp_esi_bytes(struct vdp_ctx *vdx, enum vdp_action act, void **priv,
const void *ptr, ssize_t len) const void *ptr, ssize_t len)
{ {
uint8_t *q, *r; const uint8_t *q, *r;
ssize_t l = 0; ssize_t l = 0;
uint32_t icrc = 0; uint32_t icrc = 0;
uint8_t tailbuf[8 + 5]; uint8_t tailbuf[8 + 5];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment