aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/sv
diff options
context:
space:
mode:
Diffstat (limited to 'asn1/sv')
-rw-r--r--asn1/sv/sv.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/sv/sv.cnf b/asn1/sv/sv.cnf
index 15acfafdfa..a5c9f50872 100644
--- a/asn1/sv/sv.cnf
+++ b/asn1/sv/sv.cnf
@@ -44,7 +44,7 @@
seconds = tvb_get_ntohl(tvb, offset);
fraction = tvb_get_ntoh24(tvb, offset+4) * 0x100; /* Only 3 bytes are recommended */
- nanoseconds = (guint32)( ((guint64)fraction * G_GINT64_CONSTANT(1000000000U)) / G_GINT64_CONSTANT(0x100000000U) ) ;
+ nanoseconds = (guint32)( ((guint64)fraction * G_GUINT64_CONSTANT(1000000000)) / G_GUINT64_CONSTANT(0x100000000) ) ;
ts.secs = seconds;
ts.nsecs = nanoseconds;