]> git.proxmox.com Git - mirror_spl.git/blobdiff - include/sys/sid.h
Fix cstyle warnings
[mirror_spl.git] / include / sys / sid.h
index c5988a6f956550e785d5ae3d6218868e765125ee..731b62c47e70e2329a02575c444bd97fdfb92ad8 100644 (file)
@@ -23,7 +23,7 @@
  */
 
 #ifndef _SPL_SID_H
-#define _SPL_SID_H
+#define        _SPL_SID_H
 
 typedef struct ksiddomain {
        char            *kd_name;
@@ -41,21 +41,21 @@ typedef int ksid_t;
 static inline ksiddomain_t *
 ksid_lookupdomain(const char *dom)
 {
-        ksiddomain_t *kd;
+       ksiddomain_t *kd;
        int len = strlen(dom);
 
-        kd = kmem_zalloc(sizeof(ksiddomain_t), KM_SLEEP);
-        kd->kd_name = kmem_zalloc(len + 1, KM_SLEEP);
+       kd = kmem_zalloc(sizeof (ksiddomain_t), KM_SLEEP);
+       kd->kd_name = kmem_zalloc(len + 1, KM_SLEEP);
        memcpy(kd->kd_name, dom, len);
 
-        return (kd);
+       return (kd);
 }
 
 static inline void
 ksiddomain_rele(ksiddomain_t *ksid)
 {
        kmem_free(ksid->kd_name, strlen(ksid->kd_name) + 1);
-        kmem_free(ksid, sizeof(ksiddomain_t));
+       kmem_free(ksid, sizeof (ksiddomain_t));
 }
 
 #endif /* _SPL_SID_H */