diff options
Diffstat (limited to 'src/package.c')
-rw-r--r-- | src/package.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/package.c b/src/package.c index fd0104a..9686286 100644 --- a/src/package.c +++ b/src/package.c @@ -904,8 +904,8 @@ static int read_info_entry(void *ctx, const struct apk_file_info *ae, read_info_line(ctx, l); } else if (strcmp(ae->name, ".INSTALL") == 0) { apk_warn(&ri->db->ctx->out, - "Package '%s-%s' contains deprecated .INSTALL", - pkg->name->name, pkg->version); + "Package '%s-" BLOB_FMT "' contains deprecated .INSTALL", + pkg->name->name, BLOB_PRINTF(*pkg->version)); } return 0; |