summaryrefslogtreecommitdiff
path: root/rpm.c
diff options
context:
space:
mode:
authorjbj <devnull@localhost>1999-07-27 22:05:43 +0000
committerjbj <devnull@localhost>1999-07-27 22:05:43 +0000
commit3952d8e797bae56a0122ef96b2361686305c4852 (patch)
tree541af0f587ac2615ba0c2d13d05c3057a490c59b /rpm.c
parent12dacc46fba0fb50e984e11f6d391c9b69f5cf8b (diff)
downloadrpm-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-xrpm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpm.c b/rpm.c
index 44dfec964..ccac019a7 100755
--- a/rpm.c
+++ b/rpm.c
@@ -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];