mission manager bugfix

Signed-off-by: majiajun <864428661@qq.com>

Change-Id: Ieddd44f412349b23c434a20c1e2eb9d0a466cb91
This commit is contained in:
majiajun 2022-03-28 19:44:24 -07:00
parent d04e2e48b9
commit 5191f994d4

View File

@ -702,7 +702,7 @@ int32_t DistributedSchedStub::StartSyncRemoteMissionsInner(MessageParcel& data,
}
string deviceId = Str16ToStr8(devId);
bool fixConflict = data.ReadBool();
long tag = data.ReadInt64();
int64_t tag = data.ReadInt64();
int32_t result = StartSyncRemoteMissions(deviceId, fixConflict, tag);
PARCEL_WRITE_REPLY_NOERROR(reply, Int32, result);
}