summaryrefslogtreecommitdiff
path: root/src/find-mount-point.c
diff options
context:
space:
mode:
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)
{