mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 19:19:32 +03:00
Use correct format string when printing int8
Reviewed-by: Igor Kozhukhov <igor@dilos.org> Reviewed-by: Ryan Moeller <ryan@ixsystems.com> Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Matt Macy <mmacy@FreeBSD.org> Closes #9486
This commit is contained in:
parent
601dd2a504
commit
09015c212f
@ -303,7 +303,7 @@ nvlist_print_json(FILE *fp, nvlist_t *nvl)
|
|||||||
for (i = 0; i < valsz; i++) {
|
for (i = 0; i < valsz; i++) {
|
||||||
if (i > 0)
|
if (i > 0)
|
||||||
FPRINTF(fp, ",");
|
FPRINTF(fp, ",");
|
||||||
FPRINTF(fp, "%hd", val[i]);
|
FPRINTF(fp, "%hhd", val[i]);
|
||||||
}
|
}
|
||||||
FPRINTF(fp, "]");
|
FPRINTF(fp, "]");
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user