From 7a50ead1d001f6e1475b589be696f9472743071d Mon Sep 17 00:00:00 2001 From: Richard Cochran Date: Tue, 4 Sep 2012 09:18:22 +0200 Subject: [PATCH] bugfix: correct wrong type for the cumulativeScaledRateOffset field. Signed-off-by: Richard Cochran --- tlv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tlv.h b/tlv.h index 5cf74c7..0590656 100644 --- a/tlv.h +++ b/tlv.h @@ -160,14 +160,14 @@ struct follow_up_info_tlv { UInteger16 length; Octet id[3]; Octet subtype[3]; - UInteger32 cumulativeScaledRateOffset; + Integer32 cumulativeScaledRateOffset; UInteger16 gmTimeBaseIndicator; ScaledNs lastGmPhaseChange; Integer32 scaledLastGmPhaseChange; } PACKED; struct time_status_np { - UInteger32 cumulativeScaledRateOffset; + Integer32 cumulativeScaledRateOffset; Integer32 scaledLastGmPhaseChange; UInteger16 gmTimeBaseIndicator; ScaledNs lastGmPhaseChange;