From: Nathan Wagner Date: Sat, 23 Feb 2019 15:25:24 +0000 (+0000) Subject: fix path display in show note X-Git-Tag: v0.7.0~17 X-Git-Url: https://pd.if.org/git/?p=zpackage;a=commitdiff_plain;h=c6a7a36e209ea9742d460c9c0126c510ff9906e5 fix path display in show note --- diff --git a/src/note.c b/src/note.c index d6c9df1..3d44803 100644 --- a/src/note.c +++ b/src/note.c @@ -19,7 +19,7 @@ void show_note(struct zpm_note *n) { printf("Package: %s\n", n->pkgid); } if (n->path) { - printf("Path: %s\n", n->pkgid); + printf("Path: %s\n", n->path); } if (n->file) { printf("Hash: %s\n", n->file);