Whamcloud - gitweb
ChangeLog, mke2fs.c:
authorTheodore Ts'o <tytso@mit.edu>
Tue, 24 Oct 2000 18:41:44 +0000 (18:41 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 24 Oct 2000 18:41:44 +0000 (18:41 +0000)
  mke2fs.c (zap_sector): Fix really stupid typo which gcc 2.95
   didn't catch.

misc/ChangeLog
misc/mke2fs.c

index da4b457..745b25a 100644 (file)
@@ -1,3 +1,8 @@
+2000-10-24    <tytso@valinux.com>
+
+       * mke2fs.c (zap_sector): Fix really stupid typo which gcc 2.95
+               didn't catch.
+
 2000-09-12    <tytso@valinux.com>
 
        * fsck.c: Add base device definitions for hd[e-h], for those
index 0338a7f..23e92b4 100644 (file)
@@ -559,7 +559,7 @@ static void zap_sector(ext2_filsys fs, int sect)
        retval = io_channel_write_blk(fs->io, sect, -512, buf);
        io_channel_set_blksize(fs->io, fs->blocksize);
        if (retval)
-               printf(_("Warning: could not erase sector %d: %s\n", sect),
+               printf(_("Warning: could not erase sector %d: %s\n"), sect,
                       error_message(retval));
 }