OSDN Git Service

Fix build error with RILC_LOG on
authorHyejin <hyejin.kim@lge.com>
Mon, 14 Sep 2015 23:27:28 +0000 (16:27 -0700)
committerVineeta Srivastava <vsrivastava@google.com>
Tue, 1 Dec 2015 20:35:17 +0000 (12:35 -0800)
Change-Id: Ib724e6db3c7fb4e46e7d62706cf53cc944faf797

libril/ril.cpp

index 9b05829..0b09669 100644 (file)
@@ -3666,7 +3666,7 @@ static int responseLceData(Parcel &p, void *response, size_t responselen) {
   p.write((void *)&(p_cur->lce_suspended), 1);
 
   startResponse;
-  appendPrintBuf("LCE info received: capacity %d confidence level %d
+  appendPrintBuf("LCE info received: capacity %d confidence level %d \
                   and suspended %d",
                   p_cur->last_hop_capacity_kbps, p_cur->confidence_level,
                   p_cur->lce_suspended);
@@ -3696,7 +3696,7 @@ static int responseActivityData(Parcel &p, void *response, size_t responselen) {
   p.writeInt32(p_cur->rx_mode_time_ms);
 
   startResponse;
-  appendPrintBuf("Modem activity info received: sleep_mode_time_ms %d idle_mode_time_ms %d
+  appendPrintBuf("Modem activity info received: sleep_mode_time_ms %d idle_mode_time_ms %d \
                   tx_mode_time_ms %d %d %d %d %d and rx_mode_time_ms %d",
                   p_cur->sleep_mode_time_ms, p_cur->idle_mode_time_ms, p_cur->tx_mode_time_ms[0],
                   p_cur->tx_mode_time_ms[1], p_cur->tx_mode_time_ms[2], p_cur->tx_mode_time_ms[3],