summaryrefslogtreecommitdiff
path: root/misc/mc/files/patch-src-info.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/mc/files/patch-src-info.c')
-rw-r--r--misc/mc/files/patch-src-info.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/misc/mc/files/patch-src-info.c b/misc/mc/files/patch-src-info.c
deleted file mode 100644
index 73c9ff177761..000000000000
--- a/misc/mc/files/patch-src-info.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/info.c.orig Wed Jan 29 04:58:22 2003
-+++ src/info.c Tue Jun 15 03:15:09 2004
-@@ -123,7 +123,7 @@
- size_trunc_len (buffer1, 5, myfs_stats.avail, 1);
- size_trunc_len (buffer2, 5, myfs_stats.total, 1);
- printw (_("Free space: %s (%d%%) of %s"), buffer1, myfs_stats.total ?
-- 100 * myfs_stats.avail / myfs_stats.total : 0, buffer2);
-+ (int) (100.0 * myfs_stats.avail / myfs_stats.total) : 0, buffer2);
- } else
- addstr (_("No space information"));
-
-@@ -170,7 +170,7 @@
- printw (_("Size: %s"), buffer);
- #ifdef HAVE_ST_BLOCKS
- printw ((buf.st_blocks==1) ?
-- _(" (%d block)") : _(" (%d blocks)"), buf.st_blocks);
-+ _(" (%ld block)") : _(" (%ld blocks)"), (long) buf.st_blocks);
- #endif
- }
-