diff options
-rw-r--r-- | sys/dev/sound/pcm/dsp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/sound/pcm/dsp.c b/sys/dev/sound/pcm/dsp.c index 90453c1..93ba6a4 100644 --- a/sys/dev/sound/pcm/dsp.c +++ b/sys/dev/sound/pcm/dsp.c @@ -1841,7 +1841,8 @@ dsp_unit2name(char *buf, size_t len, int unit) { int i, dtype; - KASSERT(buf != NULL && len != 0, ("bogus buf=%p len=%u", buf, len)); + KASSERT(buf != NULL && len != 0, + ("bogus buf=%p len=%ju", buf, (uintmax_t)len)); dtype = snd_unit2d(unit); |