diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-12-14 17:55:31 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-12-14 17:55:31 +0200 |
commit | 61e35657a6e3ce33a44067e82bb382b8b3133c4a (patch) | |
tree | 9166d361f00b8658c46ceec871e1d45be6af0a98 /lib/rpmds.c | |
parent | f5a712db5be29cf130a545af0645432713f6fa26 (diff) | |
download | librpm-tizen-61e35657a6e3ce33a44067e82bb382b8b3133c4a.tar.gz librpm-tizen-61e35657a6e3ce33a44067e82bb382b8b3133c4a.tar.bz2 librpm-tizen-61e35657a6e3ce33a44067e82bb382b8b3133c4a.zip |
Another bunch of bogus const removals
Diffstat (limited to 'lib/rpmds.c')
-rw-r--r-- | lib/rpmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rpmds.c b/lib/rpmds.c index 322c54045..b56d7aa46 100644 --- a/lib/rpmds.c +++ b/lib/rpmds.c @@ -779,8 +779,8 @@ void parseEVR(char * evr, int rpmdsCompare(const rpmds A, const rpmds B) { - const char *aDepend = (A->DNEVR != NULL ? xstrdup(A->DNEVR+2) : ""); - const char *bDepend = (B->DNEVR != NULL ? xstrdup(B->DNEVR+2) : ""); + char *aDepend = (A->DNEVR != NULL ? xstrdup(A->DNEVR+2) : ""); + char *bDepend = (B->DNEVR != NULL ? xstrdup(B->DNEVR+2) : ""); char *aEVR, *bEVR; const char *aE, *aV, *aR, *bE, *bV, *bR; int result; |