Commit 53eaae19 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] vx222_ops.c warning fix

Print a size_t correctly.
parent f2f9bbe5
......@@ -406,7 +406,8 @@ static int vx2_load_dsp(vx_core_t *vx, const snd_hwdep_dsp_image_t *dsp)
int err;
if (*dsp->name)
snd_printdd("loading dsp [%d] %s, size = %d\n", dsp->index, dsp->name, dsp->length);
snd_printdd("loading dsp [%d] %s, size = %Zd\n",
dsp->index, dsp->name, dsp->length);
switch (dsp->index) {
case 0:
/* xilinx image */
......
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