Skip to content

Commit 5fca473

Browse files
committed
selinux: fix style issues in security/selinux/ss/symtab.h
As part of on ongoing effort to perform more automated testing and provide more tools for individual developers to validate their patches before submitting, we are trying to make our code "clang-format clean". My hope is that once we have fixed all of our style "quirks", developers will be able to run clang-format on their patches to help avoid silly formatting problems and ensure their changes fit in well with the rest of the SELinux kernel code. Signed-off-by: Paul Moore <[email protected]>
1 parent dc9a746 commit 5fca473

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

security/selinux/ss/symtab.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,20 @@
77
*
88
* Author : Stephen Smalley, <[email protected]>
99
*/
10+
1011
#ifndef _SS_SYMTAB_H_
1112
#define _SS_SYMTAB_H_
1213

1314
#include "hashtab.h"
1415

1516
struct symtab {
16-
struct hashtab table; /* hash table (keyed on a string) */
17-
u32 nprim; /* number of primary names in table */
17+
struct hashtab table; /* hash table (keyed on a string) */
18+
u32 nprim; /* number of primary names in table */
1819
};
1920

2021
int symtab_init(struct symtab *s, u32 size);
2122

2223
int symtab_insert(struct symtab *s, char *name, void *datum);
2324
void *symtab_search(struct symtab *s, const char *name);
2425

25-
#endif /* _SS_SYMTAB_H_ */
26-
27-
26+
#endif /* _SS_SYMTAB_H_ */

0 commit comments

Comments
 (0)