From fd8ff812b3599d4f9adfa6b9d1e79d16abe2abc8 Mon Sep 17 00:00:00 2001 From: Jack Yu Date: Thu, 7 Jan 2021 23:21:46 -0800 Subject: [PATCH] Fixed incorrect retry timer value type Since negative values indicates network did not suggest data retry timer, the type should be signed instead of unsigned. Test: Manual Fix: 159672248 Change-Id: Ibda126c7db6b7e1fef9323d4b2aace37ca13ebc1 --- radio/1.6/types.hal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radio/1.6/types.hal b/radio/1.6/types.hal index 20dc612e82..bc3df130f6 100644 --- a/radio/1.6/types.hal +++ b/radio/1.6/types.hal @@ -280,7 +280,7 @@ struct SetupDataCallResult { * suggestion. 0 indicates retry should be performed immediately. 0x7fffffffffffffff indicates * the device should not retry data setup anymore. */ - uint64_t suggestedRetryTime; + int64_t suggestedRetryTime; /** Context ID, uniquely identifies this data connection. */ int32_t cid;