aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-04-14 18:10:45 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-04-14 18:10:45 +0000
commite5d6ac8615236efa43c42b31f301ea4eedf29c25 (patch)
treec9a3a6aef37efb465a9b0447bc0ef240d7b74c15 /tools
parentc3befe3a37dc97e5a9b292328461e708f07ac8c5 (diff)
Use G_GINT64_CONSTANT in stead of G_GUINT4_CONSTANT
svn path=/trunk/; revision=28048
Diffstat (limited to 'tools')
-rwxr-xr-xtools/asn2wrs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/asn2wrs.py b/tools/asn2wrs.py
index 624d690097..44e67f68c6 100755
--- a/tools/asn2wrs.py
+++ b/tools/asn2wrs.py
@@ -3106,7 +3106,7 @@ class Type (Node):
if str(minv).isdigit(): minv += 'U'
if str(maxv).isdigit():
if (long(maxv) >= 2**32):
- maxv = "G_GUINT64_CONSTANT(%s)" % (str(maxv))
+ maxv = "G_GINT64_CONSTANT(%sU)" % (str(maxv))
else:
maxv += 'U'
if (ext): ext = 'TRUE'