aboutsummaryrefslogtreecommitdiff
path: root/dd.c
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-03-24 00:54:46 +0000
committerErik Andersen <andersen@codepoet.org>2000-03-24 00:54:46 +0000
commit1ad302ac903695ef4ba748d3880222c05eeaafef (patch)
treea03bebb080253f4a20f8d5335285a5e717106d36 /dd.c
parente454fb68a3165ca5cf42c290b4b9dc92dbf9a235 (diff)
downloadbusybox-1ad302ac903695ef4ba748d3880222c05eeaafef.tar.gz
The new tar for busybox is now done, and works just fine
for extracting files. Creation of tarballs is next... -Erik
Diffstat (limited to 'dd.c')
-rw-r--r--dd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dd.c b/dd.c
index d50cf746b..9c7d872b1 100644
--- a/dd.c
+++ b/dd.c
@@ -57,8 +57,8 @@ static const char dd_usage[] =
extern int dd_main(int argc, char **argv)
{
- const char *inFile = NULL;
- const char *outFile = NULL;
+ char *inFile = NULL;
+ char *outFile = NULL;
char *cp;
int inFd;
int outFd;