diff mbox

[osmo-bts,4/5] utils: Used the enum manuf_type_id in the parameter of add_manufacturer_id_label

Message ID 1400564647-9794-1-git-send-email-anayuso@sysmocom.de
State Changes Requested
Headers show

Commit Message

Alvaro Neira May 20, 2014, 5:44 a.m. UTC
From: Álvaro Neira Ayuso <anayuso@sysmocom.de>

Signed-off-by: Alvaro Neira Ayuso <anayuso@sysmocom.de>
---
 src/osmo-bts-sysmo/utils.c |    4 ++--
 src/osmo-bts-sysmo/utils.h |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/src/osmo-bts-sysmo/utils.c b/src/osmo-bts-sysmo/utils.c
index e676a3c..8652588 100644
--- a/src/osmo-bts-sysmo/utils.c
+++ b/src/osmo-bts-sysmo/utils.c
@@ -293,11 +293,11 @@  int check_ipa_header(struct msgb *msg)
 	return 0;
 }
 
-int add_manufacturer_id_label(struct msgb *msg, int manuf_type_id)
+int add_manufacturer_id_label(struct msgb *msg, enum manuf_type_id type_id)
 {
 	uint8_t *manuf;
 
-	switch (manuf_type_id) {
+	switch (type_id) {
 	case IPACCESS_MANUF_ID:
 		manuf = msgb_push(msg, 1 + sizeof(ipaccess_magic));
 		manuf[0] = sizeof(ipaccess_magic);
diff --git a/src/osmo-bts-sysmo/utils.h b/src/osmo-bts-sysmo/utils.h
index dbbe443..a629ac1 100644
--- a/src/osmo-bts-sysmo/utils.h
+++ b/src/osmo-bts-sysmo/utils.h
@@ -30,7 +30,7 @@  enum check_message_type {
 static const char osmocom_magic[] = "org.osmocom";
 static const char ipaccess_magic[] = "com.ipaccess";
 
-int add_manufacturer_id_label(struct msgb *msg, int manuf_type_id);
+int add_manufacturer_id_label(struct msgb *msg, enum manuf_type_id type_id);
 
 void prepend_oml_ipa_header(struct msgb *msg);