summaryrefslogtreecommitdiff
path: root/src/find-mount-point.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2011-03-28 07:57:51 +0200
committerJim Meyering <meyering@redhat.com>2011-03-28 11:51:35 +0200
commitfde07ff436ef19cc85a8bb626535cc18fdb9d588 (patch)
tree1472576870c00844f4216551bda5479507e0c165 /src/find-mount-point.c
parent99679fff629f4a624f4fe7a67335c6e90533afc2 (diff)
downloadcoreutils-fde07ff436ef19cc85a8bb626535cc18fdb9d588.tar.xz
maint: correct formatting style in a header
* src/find-mount-point.h: Move "*" to where it belongs. Move "const", too. * src/find-mount-point.c: Move "const" to conform. * src/Makefile.am (sc_tight_scope): Allow `*'s before the function name. Use perl's -l option and drop the \n after (and quotes around) $1.
Diffstat (limited to 'src/find-mount-point.c')
-rw-r--r--src/find-mount-point.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/find-mount-point.c b/src/find-mount-point.c
index 48dc42304..30e51227c 100644
--- a/src/find-mount-point.c
+++ b/src/find-mount-point.c
@@ -29,11 +29,11 @@
Give a diagnostic and return NULL if unable to determine the mount point.
Exit if unable to restore current working directory. */
extern char *
-find_mount_point (const char *file, const struct stat *file_stat)
+find_mount_point (char const *file, struct stat const *file_stat)
{
struct saved_cwd cwd;
struct stat last_stat;
- char *mp = NULL; /* The malloced mount point. */
+ char *mp = NULL; /* The malloc'd mount point. */
if (save_cwd (&cwd) != 0)
{