summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/tools.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/tools.c')
-rw-r--r--mdk-stage1/tools.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdk-stage1/tools.c b/mdk-stage1/tools.c
index c67748ff5..9d0f083f6 100644
--- a/mdk-stage1/tools.c
+++ b/mdk-stage1/tools.c
@@ -50,11 +50,11 @@ void process_cmdline(void)
log_message("opening /proc/cmdline... ");
- if ((fd = open("/proc/cmdline", O_RDONLY, 0)) == -1)
+ if ((fd = open("/proc/cmdline", O_RDONLY)) == -1)
fatal_error("could not open /proc/cmdline");
size = read(fd, buf, sizeof(buf));
- buf[size-1] = 0;
+ buf[size-1] = '\0'; // -1 to eat the \n
close(fd);
log_message("\t%s", buf);