Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pax-utils:master commit in: /
Date: Sat, 17 Apr 2021 00:38:59
Message-Id: 1618612786.707e6e290cf1c5b5b58d626c493e3c80b2acfd57.vapier@gentoo
1 commit: 707e6e290cf1c5b5b58d626c493e3c80b2acfd57
2 Author: Mike Frysinger <vapier <AT> chromium <DOT> org>
3 AuthorDate: Fri Apr 16 22:39:46 2021 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 16 22:39:46 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=707e6e29
7
8 paxldso: fix pointer style
9
10 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
11
12 paxldso.c | 2 +-
13 paxldso.h | 2 +-
14 2 files changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/paxldso.c b/paxldso.c
17 index 150f490..ce7facd 100644
18 --- a/paxldso.c
19 +++ b/paxldso.c
20 @@ -460,7 +460,7 @@ void paxldso_cleanup(void)
21 }
22 #endif
23
24 -const char * ldcache_path = "/etc/ld.so.cache";
25 +const char *ldcache_path = "/etc/ld.so.cache";
26
27 #ifdef MAIN
28
29
30 diff --git a/paxldso.h b/paxldso.h
31 index fb7d938..91c7eed 100644
32 --- a/paxldso.h
33 +++ b/paxldso.h
34 @@ -67,6 +67,6 @@ extern void paxldso_cleanup(void);
35 #endif
36
37 /* Path to ld.so.cache. Usually overridden for tests. */
38 -extern const char * ldcache_path;
39 +extern const char *ldcache_path;
40
41 #endif