aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-12-01 05:52:55 +0000
committerMike Frysinger <vapier@gentoo.org>2009-12-01 05:52:55 +0000
commitfd257c523650ccf2356626f6f7c1f6aab680baab (patch)
treefb6c648af76297fdd115c51af58a4429c99a1909 /paxelf.c
parentsplit st_type and st_bind lookup functions (diff)
downloadpax-utils-fd257c523650ccf2356626f6f7c1f6aab680baab.tar.gz
pax-utils-fd257c523650ccf2356626f6f7c1f6aab680baab.tar.bz2
pax-utils-fd257c523650ccf2356626f6f7c1f6aab680baab.zip
constify all the elf pairs
Diffstat (limited to 'paxelf.c')
-rw-r--r--paxelf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/paxelf.c b/paxelf.c
index 47613e8..c5479a8 100644
--- a/paxelf.c
+++ b/paxelf.c
@@ -1,7 +1,7 @@
/*
* Copyright 2003-2007 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/pax-utils/paxelf.c,v 1.64 2009/12/01 05:50:11 vapier Exp $
+ * $Header: /var/cvsroot/gentoo-projects/pax-utils/paxelf.c,v 1.65 2009/12/01 05:52:55 vapier Exp $
*
* Copyright 2005-2007 Ned Ludd - <solar@gentoo.org>
* Copyright 2005-2007 Mike Frysinger - <vapier@gentoo.org>
@@ -14,7 +14,7 @@
* binary defines into readable strings.
*/
#define QUERY(n) { #n, n }
-typedef struct {
+typedef const struct {
const char *str;
int value;
} pairtype;