From a087c4e75de4ec309467a9467324d2afa6cff09f Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Tue, 30 Mar 2010 12:43:33 +0200 Subject: [PATCH] [mgcp] Fix format string usage --- openbsc/src/mgcp/mgcp_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbsc/src/mgcp/mgcp_main.c b/openbsc/src/mgcp/mgcp_main.c index e45a1e981..5773bc7ad 100644 --- a/openbsc/src/mgcp/mgcp_main.c +++ b/openbsc/src/mgcp/mgcp_main.c @@ -77,7 +77,7 @@ static void print_help() static void print_version() { printf("%s\n\n", openbsc_version); - printf(openbsc_copyright); + printf("%s", openbsc_copyright); } static void handle_options(int argc, char** argv)