diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-14 17:09:59 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-14 17:09:59 +0100 |
| commit | 7a98e998c5cda484611d19854649ab8535f503d4 (patch) | |
| tree | 43f7dae6921ced5ee9001f1d31c662351678a718 /core/mount.c | |
| parent | c0178363472e162a7cb21e381c512979130dfdb0 (diff) | |
add simplet init system
Diffstat (limited to 'core/mount.c')
| -rw-r--r-- | core/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/mount.c b/core/mount.c index a7a4527..3bbf52b 100644 --- a/core/mount.c +++ b/core/mount.c @@ -12,7 +12,7 @@ int main(int argc, char **argv) int err; if ((err = mount(argv[2], argv[3], argv[1], 0, 0))) { - wff(STDERR_FD, "error: %s", errstr[-err]); + wff(STDERR_FD, "error: %s\n", errstr[-err]); return err; } |