From f2d75c7c62a7a5d54a20706747366998a05afb24 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Mon, 23 Oct 2006 23:35:43 +0200 Subject: [PATCH] src/utils_mount.c: Correct syntax errors in error-strings. --- src/utils_mount.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils_mount.c b/src/utils_mount.c index 16156203..38ec24f0 100644 --- a/src/utils_mount.c +++ b/src/utils_mount.c @@ -450,7 +450,7 @@ static cu_mount_t *cu_mount_getfsstat (void) /* Get the number of mounted file systems */ if ((bufsize = CMD_STATFS (NULL, 0, FLAGS_STATFS)) < 1) { - DBG (CMD_STATFS" failed: %s", strerror (errno)); + DBG ("getv?fsstat failed: %s", strerror (errno)); return (NULL); } @@ -463,7 +463,7 @@ static cu_mount_t *cu_mount_getfsstat (void) * manpage.. -octo */ if ((num = CMD_STATFS (buf, bufsize * sizeof (STRUCT_STATFS), FLAGS_STATFS)) < 1) { - DBG (CMD_STATFS" failed: %s", strerror (errno)); + DBG ("getv?fsstat failed: %s", strerror (errno)); free (buf); return (NULL); } -- 2.11.0