From 856806d30fb16dbe695633a2dbe35a8fb4348998 Mon Sep 17 00:00:00 2001
From: Philipp Stephani <phst@google.com>
Date: Thu, 18 Apr 2019 23:19:05 +0200
Subject: [PATCH] * lib-src/make-fingerprint.c (main): Properly initialize
 'prog'

---
 lib-src/make-fingerprint.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib-src/make-fingerprint.c b/lib-src/make-fingerprint.c
index b0a51abf290..38a33576148 100644
--- a/lib-src/make-fingerprint.c
+++ b/lib-src/make-fingerprint.c
@@ -80,7 +80,7 @@ main (int argc, char **argv)
   struct sha256_ctx ctx;
   sha256_init_ctx (&ctx);
 
-  char *prog = prog;
+  char *prog = argv[0];
   char *file = argv[optind];
   if (argc - optind != 1)
     {
-- 
2.39.5