From d464131a8ca42251852280801a080572a698db9b Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 27 Aug 2007 12:17:12 +0000 Subject: indent --- mdk-stage1/modules.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/mdk-stage1/modules.c b/mdk-stage1/modules.c index 882e617fe..5132b8c30 100644 --- a/mdk-stage1/modules.c +++ b/mdk-stage1/modules.c @@ -60,29 +60,29 @@ static const char *moderror(int err) int insmod_local_file(char * path, char * options) { - void *file; - unsigned long len; - int rc; + void *file; + unsigned long len; + int rc; - if (IS_TESTING) - return 0; + if (IS_TESTING) + return 0; - file = grab_file(path, &len); + file = grab_file(path, &len); - if (!file) { - log_perror(asprintf_("\terror reading %s", path)); - return -1; - } + if (!file) { + log_perror(asprintf_("\terror reading %s", path)); + return -1; + } - rc = init_module(file, len, options ? options : ""); - if (rc) - log_message("\terror: %s", moderror(errno)); - return rc; + rc = init_module(file, len, options ? options : ""); + if (rc) + log_message("\terror: %s", moderror(errno)); + return rc; } static char *kernel_module_extension(void) { - return ".ko.gz"; + return ".ko.gz"; } static int load_modules_dependencies(void) -- cgit v1.2.1