diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-12-15 21:14:44 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-12-15 21:14:44 +0200 |
commit | f013449361e92ea2a6ffaa1bf3e9d1939f18d8b4 (patch) | |
tree | 633838a8c9054aca13578ae6f1819d2c0b576f6e /lib/rpmds.c | |
parent | aa61b715e6639d6900ca66facb62d5f099dd11d4 (diff) | |
download | librpm-tizen-f013449361e92ea2a6ffaa1bf3e9d1939f18d8b4.tar.gz librpm-tizen-f013449361e92ea2a6ffaa1bf3e9d1939f18d8b4.tar.bz2 librpm-tizen-f013449361e92ea2a6ffaa1bf3e9d1939f18d8b4.zip |
Couple of bogus const removals from rpmgi and rpmds structs
- in both cases the data is already directly inaccessible from outside,
no further protection necessary
Diffstat (limited to 'lib/rpmds.c')
-rw-r--r-- | lib/rpmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rpmds.c b/lib/rpmds.c index b56d7aa46..6337b2154 100644 --- a/lib/rpmds.c +++ b/lib/rpmds.c @@ -27,7 +27,7 @@ int _rpmds_unspecified_epoch_noise = 0; */ struct rpmds_s { const char * Type; /*!< Tag name. */ - const char * DNEVR; /*!< Formatted dependency string. */ + char * DNEVR; /*!< Formatted dependency string. */ Header h; /*!< Header for dependency set (or NULL) */ const char ** N; /*!< Name. */ const char ** EVR; /*!< Epoch-Version-Release. */ |