Commit faff786ce2f7c14f25d29cf61b0634c8f6c4827f

Authored by Eric Paris
Committed by James Morris
1 parent 81fa42df78

SELinux: hashtab.h whitespace, syntax, and other cleanups

This patch changes hashtab.h to fix whitespace and syntax issues.  Things that
are fixed may include (does not not have to include)

spaces used instead of tabs

Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>

Showing 1 changed file with 3 additions and 3 deletions Side-by-side Diff

security/selinux/ss/hashtab.h
... ... @@ -40,8 +40,8 @@
40 40 * the new hash table otherwise.
41 41 */
42 42 struct hashtab *hashtab_create(u32 (*hash_value)(struct hashtab *h, const void *key),
43   - int (*keycmp)(struct hashtab *h, const void *key1, const void *key2),
44   - u32 size);
  43 + int (*keycmp)(struct hashtab *h, const void *key1, const void *key2),
  44 + u32 size);
45 45  
46 46 /*
47 47 * Inserts the specified (key, datum) pair into the specified hash table.
... ... @@ -49,7 +49,7 @@
49 49 * Returns -ENOMEM on memory allocation error,
50 50 * -EEXIST if there is already an entry with the same key,
51 51 * -EINVAL for general errors or
52   - * 0 otherwise.
  52 + 0 otherwise.
53 53 */
54 54 int hashtab_insert(struct hashtab *h, void *k, void *d);
55 55