mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
[PATCH] uml: fix style violations
Fix a bunch of style violations in mem.c. Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
73c8f4441f
commit
81999a01c7
@ -35,7 +35,8 @@ static void __init find_tempdir(void)
|
||||
int i;
|
||||
char *dir = NULL;
|
||||
|
||||
if(tempdir != NULL) return; /* We've already been called */
|
||||
if(tempdir != NULL) /* We've already been called */
|
||||
return;
|
||||
for(i = 0; dirs[i]; i++){
|
||||
dir = getenv(dirs[i]);
|
||||
if((dir != NULL) && (*dir != '\0'))
|
||||
@ -193,7 +194,7 @@ int make_tempfile(const char *template, char **out_tempname, int do_unlink)
|
||||
} else {
|
||||
free(tempname);
|
||||
}
|
||||
return(fd);
|
||||
return fd;
|
||||
out:
|
||||
free(tempname);
|
||||
return -1;
|
||||
@ -238,7 +239,7 @@ int create_tmp_file(unsigned long long len)
|
||||
exit(1);
|
||||
}
|
||||
|
||||
return(fd);
|
||||
return fd;
|
||||
}
|
||||
|
||||
int create_mem_file(unsigned long long len)
|
||||
@ -252,7 +253,7 @@ int create_mem_file(unsigned long long len)
|
||||
errno = -err;
|
||||
perror("exec_close");
|
||||
}
|
||||
return(fd);
|
||||
return fd;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user