aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-01-15 23:25:40 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-01-15 23:25:40 +0000
commit01b304a6b7c896192b00e162252ce0cc7026f7fb (patch)
tree8af3aebc76646b344cf26941290115dee90d15d1
parentc6ac2fd721cacc2aa97f19e9fc9526788d876419 (diff)
Moved a G_GINT64_CONSTANT to a more correct position.
svn path=/trunk/; revision=24108
-rw-r--r--epan/dissectors/packet-per.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-per.c b/epan/dissectors/packet-per.c
index 35a021a1b2..f370821296 100644
--- a/epan/dissectors/packet-per.c
+++ b/epan/dissectors/packet-per.c
@@ -1325,7 +1325,7 @@ DEBUG_ENTRY("dissect_per_constrained_integer_64b");
* a real fix is implemented.
*/
if( (max==G_GINT64_CONSTANT(0x7fffffffffffffff) && min==G_GINT64_CONSTANT(0x8000000000000000))
- || G_GINT64_CONSTANT((max==0xffffffffffffffff) && min==0) ){
+ || (max==G_GINT64_CONSTANT(0xffffffffffffffff) && min==0) ){
range=G_GINT64_CONSTANT(0xffffffffffffffff);
} else {
range=max-min+1;