Skip to content

Commit

Permalink
#315 Corrected pointers
Browse files Browse the repository at this point in the history
  • Loading branch information
krichardsson committed May 22, 2018
1 parent f41cd71 commit 3f7cbc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deck/drivers/src/lpsTdoa3Tag.c
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ static int updateRemoteData(anchorInfo_t* anchorCtx, const rangePacket3_t* packe
}
}

return anchorDataPtr - (void*)packet;
return (uint8_t*)anchorDataPtr - (uint8_t*)packet;
}

static void updateAnchorData(anchorInfo_t* anchorCtx, const rangePacket3_t* packet, const dwTime_t* arrival) {
Expand Down

0 comments on commit 3f7cbc5

Please sign in to comment.