summaryrefslogtreecommitdiff
path: root/src/df.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-01-08 15:08:30 +0100
committerJim Meyering <meyering@redhat.com>2012-01-09 21:50:08 +0100
commita517386f1bf8c64ee7617cc2c9d0a16a1d85c8c4 (patch)
tree20ad6e7d6aa0baed16f884fca2bccff4dda4983d /src/df.c
parent9af0dced5a2eb167ec7b9dfe3f358f214e45d41a (diff)
downloadcoreutils-a517386f1bf8c64ee7617cc2c9d0a16a1d85c8c4.tar.xz
maint: src/*.c: change remaining quotes (without embedded spaces)
Run this (twice): git grep -E -l '`[^ ]+'\' src/*.c \ |xargs perl -pi -e 's/`([^ ]+'\'')/'\''$1/'
Diffstat (limited to 'src/df.c')
-rw-r--r--src/df.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/df.c b/src/df.c
index 881b45fcf..b4a7cb205 100644
--- a/src/df.c
+++ b/src/df.c
@@ -35,7 +35,7 @@
#include "quote.h"
#include "find-mount-point.h"
-/* The official name of this program (e.g., no `g' prefix). */
+/* The official name of this program (e.g., no 'g' prefix). */
#define PROGRAM_NAME "df"
#define AUTHORS \
@@ -69,7 +69,7 @@ static bool posix_format;
/* True if a file system has been processed for output. */
static bool file_systems_processed;
-/* If true, invoke the `sync' system call before getting any usage data.
+/* If true, invoke the 'sync' system call before getting any usage data.
Using this option can make df very slow, especially with many or very
busy disks. Note that this may make a difference on some systems --
SunOS 4.1.3, for one. It is *not* necessary on GNU/Linux. */
@@ -87,7 +87,7 @@ struct fs_type_list
};
/* Linked list of file system types to display.
- If `fs_select_list' is NULL, list all types.
+ If 'fs_select_list' is NULL, list all types.
This table is generated dynamically from command-line options,
rather than hardcoding into the program what it thinks are the
valid file system types; let the user specify any file system type
@@ -785,7 +785,7 @@ get_point (const char *point, const struct stat *statp)
}
/* Determine what kind of node NAME is and show the disk usage
- for it. STATP is the results of `stat' on NAME. */
+ for it. STATP is the results of 'stat' on NAME. */
static void
get_entry (char const *name, struct stat const *statp)