diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-12-16 21:21:31 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-12-16 21:21:31 +0200 |
commit | 4a72c2a3f6b3fd712e8e1733be6761c89ec4e25c (patch) | |
tree | bff889c8ad875f218378663ff3a1a9ce0e5ee31c /rpmio | |
parent | 1f443958a9b0ce3b29db5faa77532a437c77e663 (diff) | |
download | rpm-4a72c2a3f6b3fd712e8e1733be6761c89ec4e25c.tar.gz rpm-4a72c2a3f6b3fd712e8e1733be6761c89ec4e25c.tar.bz2 rpm-4a72c2a3f6b3fd712e8e1733be6761c89ec4e25c.zip |
More const removals
- both username cache and log records are fully contained within their
modules...
Diffstat (limited to 'rpmio')
-rw-r--r-- | rpmio/rpmlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmio/rpmlog.c b/rpmio/rpmlog.c index 450e57fe4..87ecdb189 100644 --- a/rpmio/rpmlog.c +++ b/rpmio/rpmlog.c @@ -13,7 +13,7 @@ static rpmlogRec recs = NULL; struct rpmlogRec_s { int code; /* unused */ rpmlogLvl pri; /* priority */ - const char * message; /* log message string */ + char * message; /* log message string */ }; int rpmlogGetNrecs(void) |