]> Zhao Yanbai Git Server - minix.git/commitdiff
Fixed prototype in cat
authorTomas Hruby <tom@minix3.org>
Tue, 23 Mar 2010 13:36:16 +0000 (13:36 +0000)
committerTomas Hruby <tom@minix3.org>
Tue, 23 Mar 2010 13:36:16 +0000 (13:36 +0000)
commands/simple/cat.c

index 2931be2fc80c2e63994851a77a9154fbdf3c0afd..a16af02c15e08d124f368c786910e591e2f013c2 100644 (file)
@@ -20,7 +20,7 @@ static char ibuf[CHUNK_SIZE];
 static char obuf[CHUNK_SIZE];
 static char *op = obuf;
 
-static void copyout(char *file, int fd);
+static void copyout(const char *file, int fd);
 static void output(char *buf, size_t count);
 static void report(const char *label);
 static void fatal(const char *label);