aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@chromium.org>2021-04-16 18:39:46 -0400
committerMike Frysinger <vapier@gentoo.org>2021-04-16 18:39:46 -0400
commit707e6e290cf1c5b5b58d626c493e3c80b2acfd57 (patch)
tree59dca6683cbede0b1d0bca63ce74b2bb12fedb6d
parentdumpelf: constify elfobj in APIs (diff)
downloadpax-utils-707e6e290cf1c5b5b58d626c493e3c80b2acfd57.tar.gz
pax-utils-707e6e290cf1c5b5b58d626c493e3c80b2acfd57.tar.bz2
pax-utils-707e6e290cf1c5b5b58d626c493e3c80b2acfd57.zip
paxldso: fix pointer style
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r--paxldso.c2
-rw-r--r--paxldso.h2
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