diff options
author | jbj <devnull@localhost> | 1999-07-27 22:05:43 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-07-27 22:05:43 +0000 |
commit | 3952d8e797bae56a0122ef96b2361686305c4852 (patch) | |
tree | 541af0f587ac2615ba0c2d13d05c3057a490c59b /rpm.c | |
parent | 12dacc46fba0fb50e984e11f6d391c9b69f5cf8b (diff) | |
download | rpm-3952d8e797bae56a0122ef96b2361686305c4852.tar.gz rpm-3952d8e797bae56a0122ef96b2361686305c4852.tar.bz2 rpm-3952d8e797bae56a0122ef96b2361686305c4852.zip |
popt: heavy dose of const.
CVS patchset: 3206
CVS date: 1999/07/27 22:05:43
Diffstat (limited to 'rpm.c')
-rwxr-xr-x | rpm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -519,8 +519,8 @@ int main(int argc, char ** argv) const char * pkg; char * errString = NULL; poptContext optCon; - char * infoCommand[] = { "--info", NULL }; - char * installCommand[] = { "--install", NULL }; + const char * infoCommand[] = { "--info", NULL }; + const char * installCommand[] = { "--install", NULL }; int ec = 0; int status; int p[2]; |