summaryrefslogtreecommitdiff
path: root/rpmio/argv.h
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-07-10 12:15:43 +0300
committerPanu Matilainen <pmatilai@redhat.com>2007-07-10 12:15:43 +0300
commit049674696d7f495ddf4faa4e0327712870f603ab (patch)
tree844214d9c5a83304aae9320fb6f3f58f4f5395ce /rpmio/argv.h
parentf64a1a327bfb443fea6ed766be40547c855d27a0 (diff)
downloadrpm-049674696d7f495ddf4faa4e0327712870f603ab.tar.gz
rpm-049674696d7f495ddf4faa4e0327712870f603ab.tar.bz2
rpm-049674696d7f495ddf4faa4e0327712870f603ab.zip
Remove const type-qualifiers from function return types everywhere.
They're meaningless in C and cause tonne of build warnings.
Diffstat (limited to 'rpmio/argv.h')
-rw-r--r--rpmio/argv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpmio/argv.h b/rpmio/argv.h
index 202aa4645..7cab8f23d 100644
--- a/rpmio/argv.h
+++ b/rpmio/argv.h
@@ -61,7 +61,7 @@ int argiCount(/*@null@*/ const ARGI_t argi)
* @return argi array data address
*/
/*@null@*/
-const ARGint_t argiData(/*@null@*/ const ARGI_t argi)
+ARGint_t argiData(/*@null@*/ const ARGI_t argi)
/*@*/;
/**
@@ -78,7 +78,7 @@ int argvCount(/*@null@*/ const ARGV_t argv)
* @return argv array data address
*/
/*@null@*/
-const ARGV_t argvData(/*@null@*/ const ARGV_t argv)
+ARGV_t argvData(/*@null@*/ const ARGV_t argv)
/*@*/;
/**