aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-03-30 12:43:33 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-03-30 12:43:33 +0200
commita087c4e75de4ec309467a9467324d2afa6cff09f (patch)
tree831a027c35ef5d694c14fb03aa04e8a3025ae5e0
parent6b64b26d8b601f3f58ce151521d80c69cd4b217f (diff)
[mgcp] Fix format string usage
-rw-r--r--openbsc/src/mgcp/mgcp_main.c2
1 files changed, 1 insertions, 1 deletions
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)