diff options
author | Przemyslaw Pawelczyk <przemoc@gmail.com> | 2018-02-18 22:21:17 +0100 |
---|---|---|
committer | Przemyslaw Pawelczyk <przemoc@gmail.com> | 2018-02-18 22:21:17 +0100 |
commit | 6ca112a54bd7b33d389abb28f9aa45799f2d5f26 (patch) | |
tree | b5de2acc63f7d6811aff3bb2d33b9797a23a4e62 /src/metastore.c | |
parent | fda0e6a437452639c9b5725a2968676f1870629a (diff) |
metastore.c: Version information cannot be suppressed.
Diffstat (limited to 'src/metastore.c')
-rw-r--r-- | src/metastore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/metastore.c b/src/metastore.c index 6f92f8c..ada41c4 100644 --- a/src/metastore.c +++ b/src/metastore.c @@ -399,7 +399,7 @@ fixup_newemptydirs(void) static void version(void) { - msg(MSG_QUIET, "metastore %s\n", METASTORE_VER); + printf("metastore %s\n", METASTORE_VER); exit(EXIT_SUCCESS); } |