From 67400c7d3abb60cd71aac2b5ed91dbd129b86abe Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 15 Nov 2007 12:08:19 -0500 Subject: fix display of message in usage message Displaying a function pointer as a string doesn't work well. :-) --- metastore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'metastore.c') 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" -- cgit v1.2.1