summaryrefslogtreecommitdiff
path: root/src/df.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-01-08 21:03:22 +0100
committerJim Meyering <meyering@redhat.com>2012-01-09 21:51:59 +0100
commit3ba8b044267a5f7cfa8a7b0d7f19dab3f21431da (patch)
tree576e37b75cd77b289313b23676b6bebc08c1e23b /src/df.c
parenta517386f1bf8c64ee7617cc2c9d0a16a1d85c8c4 (diff)
downloadcoreutils-3ba8b044267a5f7cfa8a7b0d7f19dab3f21431da.tar.xz
maint: src/*.[ch]: convert more `...' to '...'
Run this (twice): git grep -E -l '`.+'\' src/*.[ch] \ |xargs perl -pi -e 's/`(.+?'\'')/'\''$1/'
Diffstat (limited to 'src/df.c')
-rw-r--r--src/df.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/df.c b/src/df.c
index b4a7cb205..e998c90d6 100644
--- a/src/df.c
+++ b/src/df.c
@@ -617,7 +617,7 @@ get_dev (char const *disk, char const *mount_point,
long int lipct = pct = u * 100 / nonroot_total;
double ipct = lipct;
- /* Like `pct = ceil (dpct);', but avoid ceil so that
+ /* Like 'pct = ceil (dpct);', but avoid ceil so that
the math library needn't be linked. */
if (ipct - 1 < pct && pct <= ipct + 1)
pct = ipct + (ipct < pct);
@@ -690,7 +690,7 @@ get_disk (char const *disk)
/* Figure out which device file or directory POINT is mounted on
and show its disk usage.
- STATP must be the result of `stat (POINT, STATP)'. */
+ STATP must be the result of 'stat (POINT, STATP)'. */
static void
get_point (const char *point, const struct stat *statp)
{