mirror of
https://github.com/opnsense/src.git
synced 2026-04-02 16:05:17 -04:00
zfs: change format string in zio_fini to get rid of the cast
This commit is contained in:
parent
7f5f3fcc32
commit
a7fbfdee73
1 changed files with 2 additions and 2 deletions
|
|
@ -293,9 +293,9 @@ zio_fini(void)
|
|||
|
||||
for (i = 0; i < n; i++) {
|
||||
if (zio_buf_cache[i] != NULL)
|
||||
panic("zio_fini: zio_buf_cache[%d] != NULL", (int)i);
|
||||
panic("zio_fini: zio_buf_cache[%zd] != NULL", i);
|
||||
if (zio_data_buf_cache[i] != NULL)
|
||||
panic("zio_fini: zio_data_buf_cache[%d] != NULL", (int)i);
|
||||
panic("zio_fini: zio_data_buf_cache[%zd] != NULL", i);
|
||||
}
|
||||
|
||||
kmem_cache_destroy(zio_link_cache);
|
||||
|
|
|
|||
Loading…
Reference in a new issue