]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Remove stray semicolon
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 27 Feb 2010 22:21:52 +0000 (23:21 +0100)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 27 Feb 2010 22:21:52 +0000 (23:21 +0100)
hashtable_private.h

index 3e95f600577540095d20b2551d1198556cf36361..a81afca8843485fedaf72c40b39f9133bae9ea30 100644 (file)
@@ -32,7 +32,7 @@ hash(struct hashtable *h, void *k);
 static inline unsigned int
 indexFor(unsigned int tablelength, unsigned int hashvalue) {
     return (hashvalue % tablelength);
-};
+}
 
 /* Only works if tablelength == 2^N */
 /*static inline unsigned int