summaryrefslogtreecommitdiff
path: root/lib/gnutls_num.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2001-08-27 08:31:20 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2001-08-27 08:31:20 +0000
commit82b87ca9c792c9431245ca0a47d2b56653fd812f (patch)
tree8ef72da1d3f020117ae398ebcc93b081ba07c5bc /lib/gnutls_num.h
parent61ffc69b6456d46baf0699fee263dad40a539a66 (diff)
downloadgnutls-82b87ca9c792c9431245ca0a47d2b56653fd812f.tar.gz
minor bugfixes
Diffstat (limited to 'lib/gnutls_num.h')
-rw-r--r--lib/gnutls_num.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_num.h b/lib/gnutls_num.h
index 125ac949d8..0ce493be2a 100644
--- a/lib/gnutls_num.h
+++ b/lib/gnutls_num.h
@@ -47,7 +47,7 @@ int uint64pp( uint64 *);
# define rotr64(x,n) (((x) >> ((uint16)(n))) | ((x) << (64 - (uint16)(n))))
# define byteswap64(x) ((rotl64(x, 8) & 0x00ff00ff00ff00ffUL) | (rotr64(x, 8) & 0xff00ff00ff00ff00UL))
-# define uint64pp(x) ((++(*x)==0) ? -1 : 0);
+# define uint64pp(x) ((++(*x)==0) ? -1 : 0)
# define uint64zero(x) (*x) = 0
#endif