[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:
Jeff Dike 2007-02-10 01:44:21 -08:00 committed by Linus Torvalds
parent 73c8f4441f
commit 81999a01c7

View file

@ -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;
}