diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-05-25 20:26:56 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-06-24 13:52:11 -0400 |
commit | 76845a40c58b092a9b1812830dc98b6f32e13da6 (patch) | |
tree | 18bdce4f2ec481f6aa968308b6b229ec2713de8d /src/fcmatch.c | |
parent | aa82a4f81d4d5e547c84266e66274d55e3843746 (diff) |
Mark matchers array const (#21935)
Diffstat (limited to 'src/fcmatch.c')
-rw-r--r-- | src/fcmatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fcmatch.c b/src/fcmatch.c index 01420a63..0abd42ac 100644 --- a/src/fcmatch.c +++ b/src/fcmatch.c @@ -184,7 +184,7 @@ typedef struct _FcMatcher { * each value, earlier values are more significant than * later values */ -static FcMatcher _FcMatchers [] = { +static const FcMatcher _FcMatchers [] = { { FC_FOUNDRY_OBJECT, FcCompareString, 0, 0 }, #define MATCH_FOUNDRY 0 #define MATCH_FOUNDRY_INDEX 0 |