Diff between 733df074948544e70b9a63a08315f7937dc2c73f and d81f788767d6d614ad28fc0185cecfb4e7c987e7

Changed Files

File Additions Deletions Status
obexd/src/map_ap.c +0 -4 modified

Full Patch

diff --git a/obexd/src/map_ap.c b/obexd/src/map_ap.c
index 1f56748..b6a039a 100644
--- a/obexd/src/map_ap.c
+++ b/obexd/src/map_ap.c
@@ -252,7 +252,6 @@ gboolean map_ap_get_u8(map_ap_t *ap, enum map_ap_tag tag, uint8_t *val)
 	if (offset < 0 || ap_defs[offset].type != APT_UINT8)
 		return FALSE;
 
-
 	entry = g_hash_table_lookup(ap, GINT_TO_POINTER(tag));
 	if (entry == NULL)
 		return FALSE;
@@ -270,7 +269,6 @@ gboolean map_ap_get_u16(map_ap_t *ap, enum map_ap_tag tag, uint16_t *val)
 	if (offset < 0 || ap_defs[offset].type != APT_UINT16)
 		return FALSE;
 
-
 	entry = g_hash_table_lookup(ap, GINT_TO_POINTER(tag));
 	if (entry == NULL)
 		return FALSE;
@@ -288,7 +286,6 @@ gboolean map_ap_get_u32(map_ap_t *ap, enum map_ap_tag tag, uint32_t *val)
 	if (offset < 0 || ap_defs[offset].type != APT_UINT32)
 		return FALSE;
 
-
 	entry = g_hash_table_lookup(ap, GINT_TO_POINTER(tag));
 	if (entry == NULL)
 		return FALSE;
@@ -306,7 +303,6 @@ const char *map_ap_get_string(map_ap_t *ap, enum map_ap_tag tag)
 	if (offset < 0 || ap_defs[offset].type != APT_STR)
 		return NULL;
 
-
 	entry = g_hash_table_lookup(ap, GINT_TO_POINTER(tag));
 	if (entry == NULL)
 		return NULL;