aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
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 15:35:39 +0200
commitc38b5884ff7c61b3e4e357ad8c4b8c6960834cde (patch)
treed3829df91da9641c554ff94944fd0b8e5bf40511 /openbsc
parent4079105a6cf6bb3a233db01742a604183d326280 (diff)
[mgcp] Fix format string usage
Diffstat (limited to 'openbsc')
-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 147a765f0..6369fee0a 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)