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 /build | |
parent | 1f443958a9b0ce3b29db5faa77532a437c77e663 (diff) | |
download | librpm-tizen-4a72c2a3f6b3fd712e8e1733be6761c89ec4e25c.tar.gz librpm-tizen-4a72c2a3f6b3fd712e8e1733be6761c89ec4e25c.tar.bz2 librpm-tizen-4a72c2a3f6b3fd712e8e1733be6761c89ec4e25c.zip |
More const removals
- both username cache and log records are fully contained within their
modules...
Diffstat (limited to 'build')
-rw-r--r-- | build/names.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/names.c b/build/names.c index 14fdad41f..26a352b1f 100644 --- a/build/names.c +++ b/build/names.c @@ -10,7 +10,7 @@ #include <rpm/rpmlog.h> #include "debug.h" -typedef const char * ugstr_t; +typedef char * ugstr_t; static uid_t uids[1024]; static ugstr_t unames[1024]; |