lib/, src/: Say 'long' instead of 'long int'

We were using 'long' in most places, so be consistent and use it
everywhere.

Signed-off-by: Alejandro Colomar <alx@kernel.org>
This commit is contained in:
Alejandro Colomar
2023-12-03 09:58:19 -06:00
committed by Serge Hallyn
parent 44b8f7b3ef
commit 4f16458b6c
19 changed files with 41 additions and 37 deletions
+1 -1
View File
@@ -875,7 +875,7 @@ static struct group * get_local_group(char * grp_name)
{
const struct group *grp;
struct group *result_grp = NULL;
long long int gid;
long long gid;
char *endptr;
gid = strtoll (grp_name, &endptr, 10);