mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
In zfs_post_common(), use %d instead of %hhu.
Found with: clang
This commit is contained in:
parent
8e5fffdfb5
commit
6e634bb80f
1 changed files with 1 additions and 1 deletions
|
|
@ -350,7 +350,7 @@ zfs_post_common(spa_t *spa, vdev_t *vd, const char *name)
|
|||
|
||||
snprintf(class, sizeof(class), "%s.%s.%s", FM_RSRC_RESOURCE,
|
||||
ZFS_ERROR_CLASS, name);
|
||||
sbuf_printf(&sb, " %s=%hhu", FM_VERSION, FM_RSRC_VERSION);
|
||||
sbuf_printf(&sb, " %s=%d", FM_VERSION, FM_RSRC_VERSION);
|
||||
sbuf_printf(&sb, " %s=%s", FM_CLASS, class);
|
||||
sbuf_printf(&sb, " %s=%ju", FM_EREPORT_PAYLOAD_ZFS_POOL_GUID,
|
||||
spa_guid(spa));
|
||||
|
|
|
|||
Loading…
Reference in a new issue