From c6a7a36e209ea9742d460c9c0126c510ff9906e5 Mon Sep 17 00:00:00 2001 From: Nathan Wagner Date: Sat, 23 Feb 2019 15:25:24 +0000 Subject: [PATCH] fix path display in show note --- src/note.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.40.0