]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Avoid warnings from gcc.
authorJim Meyering <jim@meyering.net>
Thu, 25 Apr 2002 18:02:52 +0000 (18:02 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 25 Apr 2002 18:02:52 +0000 (18:02 +0000)
Declare input_file and output_file to be `const'.
(skip): Declare `file' parameter to be `const', too.

src/dd.c

index 7c0ea941e45f9444db574d12587ff066ab7d7b90..0b84cdaa585131ae3d3646d5be467ec6ddde5940 100644 (file)
--- a/src/dd.c
+++ b/src/dd.c
@@ -1,5 +1,5 @@
 /* dd -- convert a file while copying it.
-   Copyright (C) 85, 90, 91, 1995-2001 Free Software Foundation, Inc.
+   Copyright (C) 85, 90, 91, 1995-2002 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 char *program_name;
 
 /* The name of the input file, or NULL for the standard input. */
-static char *input_file = NULL;
+static char const *input_file = NULL;
 
 /* The name of the output file, or NULL for the standard output. */
-static char *output_file = NULL;
+static char const *output_file = NULL;
 
 /* The number of bytes in which atomic reads are done. */
 static size_t input_blocksize = 0;
@@ -793,7 +793,8 @@ skip_via_lseek (char const *filename, int fdesc, off_t offset, int whence)
    nonzero.  */
 
 static void
-skip (int fdesc, char *file, uintmax_t records, size_t blocksize, char *buf)
+skip (int fdesc, char const *file, uintmax_t records, size_t blocksize,
+      char *buf)
 {
   off_t offset = records * blocksize;