aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/mgcp
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-09-18 06:44:24 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-09-18 06:44:24 +0800
commitadb6e1cce10570a1b4ea1f55fce4813170c0b703 (patch)
treefe32cfbce4f17ab1e3ccfd29c35ac78424192255 /openbsc/src/mgcp
parent212e1052881780a1f454a95b71ea062791710afa (diff)
janitor: Move the * to the variable name
Diffstat (limited to 'openbsc/src/mgcp')
-rw-r--r--openbsc/src/mgcp/mgcp_main.c4
-rw-r--r--openbsc/src/mgcp/mgcp_protocol.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/src/mgcp/mgcp_main.c b/openbsc/src/mgcp/mgcp_main.c
index d1e22eadc..e331159b4 100644
--- a/openbsc/src/mgcp/mgcp_main.c
+++ b/openbsc/src/mgcp/mgcp_main.c
@@ -80,7 +80,7 @@ static void print_help()
printf(" -c --config-file filename The config file to use.\n");
}
-static void handle_options(int argc, char** argv)
+static void handle_options(int argc, char **argv)
{
while (1) {
int option_index = 0, c;
@@ -189,7 +189,7 @@ static struct vty_app_info vty_info = {
.is_config_node = bsc_vty_is_config_node,
};
-int main(int argc, char** argv)
+int main(int argc, char **argv)
{
struct gsm_network dummy_network;
struct sockaddr_in addr;
diff --git a/openbsc/src/mgcp/mgcp_protocol.c b/openbsc/src/mgcp/mgcp_protocol.c
index 33d6c63c9..1ec9201b2 100644
--- a/openbsc/src/mgcp/mgcp_protocol.c
+++ b/openbsc/src/mgcp/mgcp_protocol.c
@@ -353,7 +353,7 @@ static struct msgb *handle_audit_endpoint(struct mgcp_config *cfg, struct msgb *
return create_response(response, "AUEP", trans_id);
}
-static int parse_conn_mode(const char* msg, int *conn_mode)
+static int parse_conn_mode(const char *msg, int *conn_mode)
{
int ret = 0;
if (strcmp(msg, "recvonly") == 0)