diff options
author | Toomas Soome <tsoome@me.com> | 2019-01-14 18:23:28 +0200 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2019-01-15 20:34:46 +0000 |
commit | f482e26cbeb654aaa01a12e3faae3878d6a59822 (patch) | |
tree | 1eb85eae5f69624c91cad442feb459dda31e8891 /usr/src | |
parent | 161294fe5eab242f42189b33b59ebbe6ac9558f4 (diff) | |
download | illumos-joyent-f482e26cbeb654aaa01a12e3faae3878d6a59822.tar.gz |
10233 dboot: process_module() is missing newline at the end of the string
Reviewed by: Sebastian Wiedenroth <wiedi@frubar.net>
Reviewed by: Jason King <jbk@joyent.com>
Reviewed by: Andy Stormont <astormont@racktopsystems.com>
Approved by: Robert Mustacchi <rm@joyent.com>
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/uts/i86pc/dboot/dboot_startkern.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/i86pc/dboot/dboot_startkern.c b/usr/src/uts/i86pc/dboot/dboot_startkern.c index 5565917359..ae669dd734 100644 --- a/usr/src/uts/i86pc/dboot/dboot_startkern.c +++ b/usr/src/uts/i86pc/dboot/dboot_startkern.c @@ -1324,7 +1324,7 @@ process_module(int midx) modules[midx].bm_type = BMT_ENV; } else if (strcmp(q, "file") != 0) { dboot_printf("\tmodule #%d: unknown module " - "type '%s'; defaulting to 'file'", + "type '%s'; defaulting to 'file'\n", midx, q); } continue; |