gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r8304 - GNUnet/src/util/crypto


From: gnunet
Subject: [GNUnet-SVN] r8304 - GNUnet/src/util/crypto
Date: Sun, 1 Mar 2009 18:40:02 -0700

Author: grothoff
Date: 2009-03-01 18:40:01 -0700 (Sun, 01 Mar 2009)
New Revision: 8304

Modified:
   GNUnet/src/util/crypto/hashing.c
Log:
fix

Modified: GNUnet/src/util/crypto/hashing.c
===================================================================
--- GNUnet/src/util/crypto/hashing.c    2009-02-28 21:29:29 UTC (rev 8303)
+++ GNUnet/src/util/crypto/hashing.c    2009-03-02 01:40:01 UTC (rev 8304)
@@ -642,7 +642,7 @@
       GNUNET_GE_ASSERT (NULL, 0);
       return -1;                /* error */
     }
-  return (((unsigned char *) code)[bit >> 3] & (1 << bit & 7)) > 0;
+  return (((unsigned char *) code)[bit >> 3] & (1 << (bit & 7))) > 0;
 }
 
 /**





reply via email to

[Prev in Thread] Current Thread [Next in Thread]