[PATCH 7/7] UML - fix style violations

From: Jeff Dike
Date: Tue Jan 23 2007 - 14:35:35 EST


Fix a bunch of style violations in mem.c.

Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxx>
--
arch/um/os-Linux/mem.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)

Index: linux-2.6.18-mm/arch/um/os-Linux/mem.c
===================================================================
--- linux-2.6.18-mm.orig/arch/um/os-Linux/mem.c 2007-01-17 13:03:12.000000000 +1100
+++ linux-2.6.18-mm/arch/um/os-Linux/mem.c 2007-01-17 13:05:21.000000000 +1100
@@ -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,
} else {
free(tempname);
}
- return(fd);
+ return fd;
out:
free(tempname);
return -1;
@@ -238,7 +239,7 @@ int create_tmp_file(unsigned long long l
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 l
errno = -err;
perror("exec_close");
}
- return(fd);
+ return fd;
}



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/