diff options
author | Daniel Buch <boogiewasthere@gmail.com> | 2013-11-26 09:38:02 +0100 |
---|---|---|
committer | David Strauss <david@davidstrauss.net> | 2013-11-26 21:07:46 +1000 |
commit | f5f6d0e25574dd63fb605b81fa7767dd71c454db (patch) | |
tree | 3ec0b42888ce9b6895ec264c2a18a394c6d3db3e /src/core/mount-setup.c | |
parent | 34a6dc7dcaa47a9efe083acc6f5fc6263414465e (diff) |
tree-wide usage of %m specifier instead of strerror(errno)
Also for log_error() except where a specific error is specified
e.g. errno ? strerror(errno) : "Some user specified message"
Diffstat (limited to 'src/core/mount-setup.c')
-rw-r--r-- | src/core/mount-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/mount-setup.c b/src/core/mount-setup.c index 73c2698ea3..c601c9742c 100644 --- a/src/core/mount-setup.c +++ b/src/core/mount-setup.c @@ -188,7 +188,7 @@ static int mount_one(const MountPoint *p, bool relabel) { p->type, p->flags, p->options) < 0) { - log_full((p->mode & MNT_FATAL) ? LOG_ERR : LOG_DEBUG, "Failed to mount %s: %s", p->where, strerror(errno)); + log_full((p->mode & MNT_FATAL) ? LOG_ERR : LOG_DEBUG, "Failed to mount %s: %m", p->where); return (p->mode & MNT_FATAL) ? -errno : 0; } |