diff options
| author | Howard Su <howard0su@gmail.com> | 2014-12-07 14:45:32 +0000 |
|---|---|---|
| committer | Utkarsh Gupta <utkarsh.eminem@gmail.com> | 2015-02-10 11:16:54 +0100 |
| commit | 7f291387c069714683864bdbb5374a0bfd654b9c (patch) | |
| tree | f5c60bfd1f7ec4a0e8584696d081434097934751 | |
| parent | f9abcfee54664f577f32b63c98161fe08e4b71fd (diff) | |
libril: fix build when log is enabled.
Change-Id: I93bca8abbdced44f2360b3ab00510f111a724333
| -rw-r--r-- | ril/xmm6262/libril/ril.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ril/xmm6262/libril/ril.cpp b/ril/xmm6262/libril/ril.cpp index 50e9f03..c5c8c05 100644 --- a/ril/xmm6262/libril/ril.cpp +++ b/ril/xmm6262/libril/ril.cpp @@ -1062,7 +1062,7 @@ dispatchImsGsmSms(Parcel &p, RequestInfo *pRI, uint8_t retry, int32_t messageRef rism.messageRef = messageRef; startRequest; - appendPrintBuf("%sformat=%d,", printBuf, rism.format); + appendPrintBuf("%sretry=%d,messageRef=%d,", printBuf, rism.retry, rism.messageRef); if (countStrings == 0) { // just some non-null pointer pStrings = (char **)alloca(sizeof(char *)); @@ -1506,8 +1506,8 @@ static void dispatchSetInitialAttachApn(Parcel &p, RequestInfo *pRI) pf.password = strdupReadString(p); startRequest; - appendPrintBuf("%sapn=%s, protocol=%s, auth_type=%d, username=%s, password=%s", - printBuf, pf.apn, pf.protocol, pf.auth_type, pf.username, pf.password); + appendPrintBuf("%sapn=%s, protocol=%s, authtype=%d, username=%s, password=%s", + printBuf, pf.apn, pf.protocol, pf.authtype, pf.username, pf.password); closeRequest; printRequest(pRI->token, pRI->pCI->requestNumber); |
