diff --git a/sbin/savecore/savecore.c b/sbin/savecore/savecore.c index 7a5fc4c937da..eec0a5398e9a 100644 --- a/sbin/savecore/savecore.c +++ b/sbin/savecore/savecore.c @@ -277,7 +277,8 @@ check_space(const char *savedir, off_t dumpsize, int bounds) needed -= saved_dump_size(bounds); if ((minfree > 0 ? spacefree : totfree) - needed < minfree) { syslog(LOG_WARNING, - "no dump, not enough free space on device (%lld available, need %lld)", + "no dump: not enough free space on device (%lldkB " + "available; need at least %lldkB)", (long long)(minfree > 0 ? spacefree : totfree), (long long)needed); return (0);