if (ret->tid) {
g_source_remove(ret->tid);
- DBG("tid=%d removed");
+ DBG("tid=%d removed", ret->tid);
ret->tid = 0;
}
if (container->tid) {
g_source_remove(container->tid);
- DBG("tid=%d removed");
+ DBG("tid=%d removed", container->tid);
container->tid = 0;
}
RETM_IF(NULL == match_list, "calloc() Fail(%d)", errno);
while (g_variant_iter_loop(ml_iter, "(y)", &value)) {
match_list[j] = value;
- DBG("match_list[i]=%d", j, match_list[j]);
+ DBG("match_list[%d]=%d", j, match_list[j]);
j++;
}
}
status = calloc(record_length, sizeof(unsigned char));
data_size = calloc(record_length, sizeof(unsigned char));
if (!status || !data_size) {
- ERR("Couldn't allocate the memory (%s)", errno);
+ ERR("Couldn't allocate the memory (%0x02X)", errno);
goto GLOBAL_READ_CONFIGURE_REPORTING_REQ_OUT;
}