From: Florian Forster Date: Mon, 23 Oct 2006 21:35:43 +0000 (+0200) Subject: src/utils_mount.c: Correct syntax errors in error-strings. X-Git-Tag: collectd-3.10.2~7^3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f2d75c7c62a7a5d54a20706747366998a05afb24;p=collectd.git src/utils_mount.c: Correct syntax errors in error-strings. --- 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); }