diff options
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -294,7 +294,7 @@ void hex_dump(void *data, int size) if (n%16 == 0) { /* line completed */ - LOGD("[%4.4s] %-50.50s %s", addrstr, hexstr, charstr); + RIL_LOGD("[%4.4s] %-50.50s %s", addrstr, hexstr, charstr); hexstr[0] = 0; charstr[0] = 0; } else if (n%8 == 0) { @@ -307,7 +307,7 @@ void hex_dump(void *data, int size) if (strlen(hexstr) > 0) { /* print rest of buffer if not empty */ - LOGD("[%4.4s] %-50.50s %s\n", addrstr, hexstr, charstr); + RIL_LOGD("[%4.4s] %-50.50s %s\n", addrstr, hexstr, charstr); } } |