diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-04-07 12:11:16 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-04-07 12:19:58 +0300 |
commit | c29adcee80825d79e7b522ee651360d1b9542539 (patch) | |
tree | d9bed24a002962b62e511ea2fa93c6040cf3a657 /lib/rpmgi.h | |
parent | d728ec28dcb51a139859e4fed48da894a8363a51 (diff) | |
download | rpm-c29adcee80825d79e7b522ee651360d1b9542539.tar.gz rpm-c29adcee80825d79e7b522ee651360d1b9542539.tar.bz2 rpm-c29adcee80825d79e7b522ee651360d1b9542539.zip |
ARGV_t const pendantry
- const on typedef'ed ARGV_t doesn't mean a thing, add a new,
(exec* compatible) ARGV_const_t and use where appropriate consistently in
argv.h, rpmcli.h etc
- popt's argv const is the wrong way around for exec() family, add explicit
ARGV_t casts on popGetArgs() uses where needed
- compiler silence, aaahh...
Diffstat (limited to 'lib/rpmgi.h')
-rw-r--r-- | lib/rpmgi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rpmgi.h b/lib/rpmgi.h index e693be001..8dfc6f249 100644 --- a/lib/rpmgi.h +++ b/lib/rpmgi.h @@ -111,7 +111,7 @@ rpmts rpmgiTs(rpmgi gi); * @param flags iterator flags * @return RPMRC_OK on success */ -rpmRC rpmgiSetArgs(rpmgi gi, ARGV_t argv, +rpmRC rpmgiSetArgs(rpmgi gi, ARGV_const_t argv, int ftsOpts, rpmgiFlags flags); |