diff options
author | Roland McGrath <roland@gnu.org> | 1994-08-31 06:25:16 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-08-31 06:25:16 +0000 |
commit | d88d3db47951fc4300b71abd335148d2e3b9d43c (patch) | |
tree | a28079ae2e4ba03059da72f957565610aeab58e2 | |
parent | c15f44ab319f7ddde75e4df48d25224cc9e28eec (diff) |
Formerly boot-parse.c.~6~
-rw-r--r-- | libdiskfs/boot-parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdiskfs/boot-parse.c b/libdiskfs/boot-parse.c index e39a18cf..4403fcfe 100644 --- a/libdiskfs/boot-parse.c +++ b/libdiskfs/boot-parse.c @@ -82,9 +82,9 @@ diskfs_parse_bootargs (int argc, char **argv) if (diskfs_bootflags & RB_ASKNAME) { char *tmp; - printf ("Bootstap filesystem device name [%s]: ", devname); + printf ("Bootstrap filesystem device name [%s]: ", devname); fflush (stdout); - scanf ("%a\n", &tmp); + scanf ("%as\n", &tmp); if (*tmp) devname = tmp; } |