summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e6bfb0e)
raw | patch | inline | side by side (parent: e6bfb0e)
author | Florian Forster <octo@huhu.verplant.org> | |
Mon, 9 May 2011 21:36:17 +0000 (23:36 +0200) | ||
committer | Florian Forster <octo@huhu.verplant.org> | |
Mon, 9 May 2011 21:36:17 +0000 (23:36 +0200) |
src/df.c | patch | blob | history |
diff --git a/src/df.c b/src/df.c
index fc80ac3f08c27c659d4261427be91345c62238be..2e9b2ae8288dd64f1a75d30b51d83593a8fd4ef8 100644 (file)
--- a/src/df.c
+++ b/src/df.c
# include <sys/statvfs.h>
# endif
# define STATANYFS statvfs
+# define STATANYFS_STR "statvfs"
# define BLOCKSIZE(s) ((s).f_frsize ? (s).f_frsize : (s).f_bsize)
#elif HAVE_STATFS
# if HAVE_SYS_STATFS_H
# include <sys/statfs.h>
# endif
# define STATANYFS statfs
+# define STATANYFS_STR "statfs"
# define BLOCKSIZE(s) (s).f_bsize
#else
# error "No applicable input method."
if (STATANYFS (mnt_ptr->dir, &statbuf) < 0)
{
char errbuf[1024];
- ERROR ("statv?fs failed: %s",
+ ERROR (STATANYFS_STR"(%s) failed: %s",
+ mnt_ptr->dir,
sstrerror (errno, errbuf,
sizeof (errbuf)));
continue;