Re: [Qemu-devel] [PATCH] qemu-io-cmds: Fix two format strings

2018-10-08 Thread Kevin Wolf
Am 06.10.2018 um 20:38 hat Stefan Weil geschrieben: > Use %zu instead of %zd for unsigned numbers. > > This fixes two error messages from the LSTM static code analyzer: > > This argument should be of type 'ssize_t' but is of type 'unsigned long' > > Signed-off-by: Stefan Weil Thanks, applied t

[Qemu-devel] [PATCH] qemu-io-cmds: Fix two format strings

2018-10-06 Thread Stefan Weil
Use %zu instead of %zd for unsigned numbers. This fixes two error messages from the LSTM static code analyzer: This argument should be of type 'ssize_t' but is of type 'unsigned long' Signed-off-by: Stefan Weil --- qemu-io-cmds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff