aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Masters <jcm@jonmasters.org>2009-05-20 22:58:43 -0400
committerJon Masters <jcm@jonmasters.org>2009-05-20 22:58:43 -0400
commitb9d6de8434a516f0d8ce3114b0af6c3355bf5ef6 (patch)
tree6e0ee08561b412427763dc666f07debf3f631f11
parent8accb5a76ff4062a1b40b69625e91b3b1603bc93 (diff)
downloadmodule-init-tools-b9d6de8434a516f0d8ce3114b0af6c3355bf5ef6.tar.gz
modprobe: fix tab formatting of return statement
Correct a problem with tabulation so the rc doesn't look like it's part of the "if" statement above it. Signed-off-by: Jon Masters <jcm@jonmasters.org>
-rw-r--r--modprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modprobe.c b/modprobe.c
index c6ef155..f5a8437 100644
--- a/modprobe.c
+++ b/modprobe.c
@@ -716,7 +716,7 @@ out_hack:
error("Error inserting %s (%s): %s\n",
mod->modname, mod->filename,
insert_moderror(errno));
- rc = 1;
+ rc = 1;
}
out:
release_elf_file(module);