summaryrefslogtreecommitdiff
path: root/serverboot/bootstrap.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-08-17 04:48:03 +0000
committerRoland McGrath <roland@gnu.org>2001-08-17 04:48:03 +0000
commit8e7cfa8a006ba1e1616d8f88767666e4dda96de2 (patch)
tree7a87f3c7e21bd4daf97d4ce70ea5379641fa2f75 /serverboot/bootstrap.c
parentb6dc2a97a52a2e7ba3cc14771f48a14d6de64fe5 (diff)
2001-08-16 Roland McGrath <roland@frob.com>
* Makefile (OBJS): Add userland-boot.o here. Add a vpath to find userland-boot.c in boot/ too. * bootstrap.c (parse_script): Pass new arg to boot_script_parse_line. * load.c: Include <stddef.h> before "boot_script.h".
Diffstat (limited to 'serverboot/bootstrap.c')
-rw-r--r--serverboot/bootstrap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/serverboot/bootstrap.c b/serverboot/bootstrap.c
index 46935a26..3d298a5a 100644
--- a/serverboot/bootstrap.c
+++ b/serverboot/bootstrap.c
@@ -474,7 +474,7 @@ parse_script (struct file *f)
while (p < buf + f->f_size && *p != '\n')
p++;
*p = '\0';
- err = boot_script_parse_line (line);
+ err = boot_script_parse_line (0, line);
if (err)
boot_panic (err);
if (p == buf + f->f_size)