diff options
author | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-09-18 05:53:37 +0200 |
---|---|---|
committer | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-09-18 05:53:37 +0200 |
commit | 90688278db31b05a56ca1e7c29cc71d38ce28ff3 (patch) | |
tree | fc4bd81149083ac4ee5bdad4de213069a37ed908 /rpmio/thkp.c | |
parent | f2a250702a4d4f2735cacffef033ad8b6e3062d1 (diff) | |
download | rpm-90688278db31b05a56ca1e7c29cc71d38ce28ff3.tar.gz rpm-90688278db31b05a56ca1e7c29cc71d38ce28ff3.tar.bz2 rpm-90688278db31b05a56ca1e7c29cc71d38ce28ff3.zip |
Change main() to using char *argv[].
Diffstat (limited to 'rpmio/thkp.c')
-rw-r--r-- | rpmio/thkp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmio/thkp.c b/rpmio/thkp.c index 0f8576379..9cd8eaef4 100644 --- a/rpmio/thkp.c +++ b/rpmio/thkp.c @@ -99,7 +99,7 @@ static struct poptOption optionsTable[] = { }; int -main(int argc, const char *argv[]) +main(int argc, char *argv[]) { poptContext optCon = poptGetContext(argv[0], argc, argv, optionsTable, 0); int rc; |