]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - plugins/md3model/ident.h
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / plugins / md3model / ident.h
index d14eabc2a7e256aae329a303c76220e6b6708d59..1806984fe997ffb397751a5b7de70a5ca5789276 100644 (file)
@@ -25,8 +25,9 @@
 #include <string.h>
 
 // equality comparison for two 4-byte ident strings
-inline bool ident_equal( const unsigned char* ident, const unsigned char* other ){
-       return ident[0] == other[0] && ident[1] == other[1] && ident[2] == other[2] && ident[3] == other[3];
+inline bool ident_equal(const unsigned char *ident, const unsigned char *other)
+{
+    return ident[0] == other[0] && ident[1] == other[1] && ident[2] == other[2] && ident[3] == other[3];
 }
 
 #endif