journalctl: don't claim the journal was stored on disk

Let's just say that the journal takes up space in the file system, not on disk,
as tmpfs is definitely a file system, but not a disk.

Fixes: #4059
This commit is contained in:
Lennart Poettering 2016-10-12 20:20:53 +02:00
parent ae739cc1ed
commit 8da830bca9
1 changed files with 1 additions and 1 deletions

View File

@ -2266,7 +2266,7 @@ int main(int argc, char *argv[]) {
if (r < 0)
goto finish;
printf("Archived and active journals take up %s on disk.\n",
printf("Archived and active journals take up %s in the file system.\n",
format_bytes(sbytes, sizeof(sbytes), bytes));
goto finish;
}