diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-12-18 10:17:18 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-12-18 10:17:18 +0200 |
commit | 78ad426f040a85965ad33ab64f040012f1b2af39 (patch) | |
tree | bd656a40ddcf5563dbedb513379ff86815333ad7 /lib/rpminstall.c | |
parent | 8bdd462b50b7930c94cd7c59ac068934f60cffcf (diff) | |
download | librpm-tizen-78ad426f040a85965ad33ab64f040012f1b2af39.tar.gz librpm-tizen-78ad426f040a85965ad33ab64f040012f1b2af39.tar.bz2 librpm-tizen-78ad426f040a85965ad33ab64f040012f1b2af39.zip |
Remove bogus const from rpmGlob argv return type
- it's malloced and must be freed by caller
Diffstat (limited to 'lib/rpminstall.c')
-rw-r--r-- | lib/rpminstall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rpminstall.c b/lib/rpminstall.c index fed2905c0..0fd0eaee0 100644 --- a/lib/rpminstall.c +++ b/lib/rpminstall.c @@ -254,7 +254,7 @@ int rpmInstall(rpmts ts, rpmRelocation * relocations; const char * fileURL = NULL; int stopInstall = 0; - const char ** av = NULL; + char ** av = NULL; rpmVSFlags vsflags, ovsflags, tvsflags; int ac = 0; int rc; |