commit:     707e6e290cf1c5b5b58d626c493e3c80b2acfd57
Author:     Mike Frysinger <vapier <AT> chromium <DOT> org>
AuthorDate: Fri Apr 16 22:39:46 2021 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Fri Apr 16 22:39:46 2021 +0000
URL:        https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=707e6e29

paxldso: fix pointer style

Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>

 paxldso.c | 2 +-
 paxldso.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/paxldso.c b/paxldso.c
index 150f490..ce7facd 100644
--- a/paxldso.c
+++ b/paxldso.c
@@ -460,7 +460,7 @@ void paxldso_cleanup(void)
 }
 #endif
 
-const char * ldcache_path = "/etc/ld.so.cache";
+const char *ldcache_path = "/etc/ld.so.cache";
 
 #ifdef MAIN
 

diff --git a/paxldso.h b/paxldso.h
index fb7d938..91c7eed 100644
--- a/paxldso.h
+++ b/paxldso.h
@@ -67,6 +67,6 @@ extern void paxldso_cleanup(void);
 #endif
 
 /* Path to ld.so.cache. Usually overridden for tests. */
-extern const char * ldcache_path;
+extern const char *ldcache_path;
 
 #endif

Reply via email to