Skip to content

Commit

Permalink
Compile error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
younghyunjo committed May 19, 2018
1 parent ad129e3 commit f5acc6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hap.c
Expand Up @@ -432,7 +432,7 @@ void* hap_accessory_register(char* name, char* id, char* pincode, char* vendor,

struct hap_accessory* a = calloc(1, sizeof(struct hap_accessory));
if (a == NULL) {
ESP_LOGE("calloc failed. size:%d", sizeof(struct hap_accessory));
ESP_LOGE(TAG, "calloc failed. size:%d", sizeof(struct hap_accessory));
return NULL;
}

Expand Down

0 comments on commit f5acc6d

Please sign in to comment.