diff options
Diffstat (limited to 'coreutils/dd.c')
-rw-r--r-- | coreutils/dd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index d50cf74..9c7d872 100644 --- a/coreutils/dd.c +++ b/coreutils/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; |