]> git.karo-electronics.de Git - mdnsd.git/blobdiff - mdnsd.c
Replaced tabs by four spaces
[mdnsd.git] / mdnsd.c
diff --git a/mdnsd.c b/mdnsd.c
index e2da31e8471594a23934850c145160825da505eb..3551bf7a5cd067a8e77de8f0d00777c2c70951cb 100644 (file)
--- a/mdnsd.c
+++ b/mdnsd.c
 
 static int NameHash(const char *str)
 {
-       /* ELF hash uses uint8_ts and unsigned arithmetic for portability */
+    /* ELF hash uses uint8_ts and unsigned arithmetic for portability */
     const uint8_t *name = (uint8_t *)str;
     uint32_t hash = 0;
     uint32_t g;
@@ -132,7 +132,7 @@ static int NameHash(const char *str)
         hash = (hash << 4) + (unsigned long)(tolower (*name++));
         if ((g = (hash & 0xF0000000UL))!=0) {
             hash ^= (g >> 24);
-               }
+        }
         hash &= ~g;
     }