Merge "Suppress the warning compiled with gcc-4.9"
diff --git a/btif/src/btif_storage.c b/btif/src/btif_storage.c
index 65cffbc..81e00e4 100644
--- a/btif/src/btif_storage.c
+++ b/btif/src/btif_storage.c
@@ -1500,7 +1500,7 @@
 
     if (!btif_config_exist("Local", BTIF_STORAGE_HL_APP, BTIF_STORAGE_HL_APP_CB))
     {
-        memset(value, value_size, 0);
+        memset(value, 0, value_size);
         if (!btif_config_set("Local", BTIF_STORAGE_HL_APP,BTIF_STORAGE_HL_APP_CB,
                              value, value_size, BTIF_CFG_TYPE_BIN))
         {