diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-06-25 19:31:48 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-06-25 19:31:48 +0000 |
commit | 24982c589bcd53a3f38b868ca17fa12d4922e5ed (patch) | |
tree | 145a841193b6bde3f03bb9b3ddb6a4b0dfcb7b16 /archival | |
parent | 2d848a476ac212046bcda453c8bc3da5fcaff5d3 (diff) | |
download | busybox-24982c589bcd53a3f38b868ca17fa12d4922e5ed.tar.gz |
Fix up some warnings that show up on ppc
Diffstat (limited to 'archival')
-rw-r--r-- | archival/dpkg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c index 7dd46be0c..01ddc7b7b 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c @@ -837,7 +837,7 @@ extern int dpkg_main(int argc, char **argv) optind++; } - make_directory(infodir, S_IRWXU, FILEUTILS_RECUR); + make_directory((char *)infodir, S_IRWXU, FILEUTILS_RECUR); status = status_read(); |