libopkg: fix compiler warning
authorDaniel Golle <daniel@makrotopia.org>
Mon, 31 Aug 2020 09:55:09 +0000 (10:55 +0100)
committerDaniel Golle <daniel@makrotopia.org>
Mon, 31 Aug 2020 09:55:09 +0000 (10:55 +0100)
commitcf44c2feb606b60ba3f35392e102c281ef6ea0da
tree1c2ce20f04684840cd22a05137ea3efe382fc8c5
parent4318ab1de6881f00ccb3a04c755893dee5f068ed
libopkg: fix compiler warning

libopkg/pkg.c: In function 'pkg_set_raw':
libopkg/pkg.c:109:58: warning: format '%d' expects argument of type
 'int', but argument 5 has type 'size_t' {aka 'long unsigned int'}
 [-Wformat=]

Use '%zu' instead.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
libopkg/pkg.c