diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2007-11-15 12:08:19 -0500 |
---|---|---|
committer | David Härdeman <david@hardeman.nu> | 2007-11-25 23:20:06 +0100 |
commit | 67400c7d3abb60cd71aac2b5ed91dbd129b86abe (patch) | |
tree | 288a8adbc06dd07793234cb8f9e79a60f8c4ea98 /metastore.c | |
parent | 231840bffdfe6d1873c32f6a61cde74635fed53a (diff) |
fix display of message in usage message
Displaying a function pointer as a string doesn't work well. :-)
Diffstat (limited to 'metastore.c')
-rw-r--r-- | metastore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/metastore.c b/metastore.c index a03e0ef..667a450 100644 --- a/metastore.c +++ b/metastore.c @@ -203,7 +203,7 @@ static void usage(const char *arg0, const char *message) { if (message) - msg(MSG_CRITICAL, "%s: %s\n\n", arg0, msg); + msg(MSG_CRITICAL, "%s: %s\n\n", arg0, message); msg(MSG_CRITICAL, "Usage: %s ACTION [OPTION...] [PATH...]\n\n", arg0); msg(MSG_CRITICAL, "Where ACTION is one of:\n" " -c, --compare\tShow differences between stored and real metadata\n" |