diff options
| author | Toomas Soome <tsoome@me.com> | 2019-08-06 12:59:26 +0300 |
|---|---|---|
| committer | Toomas Soome <tsoome@me.com> | 2019-08-12 22:28:08 +0300 |
| commit | 7f3e7b1b3fd1f1ac090d298a0203b20c79fbe725 (patch) | |
| tree | 7f99d3df6ceae54f8371411016bc524d60130bcb /usr/src | |
| parent | 4f7f1d0fa878cb07e58af9d4f2abea08273b07c7 (diff) | |
| download | illumos-joyent-7f3e7b1b3fd1f1ac090d298a0203b20c79fbe725.tar.gz | |
11523 i86pc: dboot_startkern.c:2046: error: comparison between pointer and integer
Reviewed by: Robert Mustacchi <robert.mustacchi@joyent.com>
Approved by: Dan McDonald <danmcd@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 f4d9dbd0f9..9647dbe87d 100644 --- a/usr/src/uts/i86pc/dboot/dboot_startkern.c +++ b/usr/src/uts/i86pc/dboot/dboot_startkern.c @@ -2043,7 +2043,7 @@ build_page_tables(void) * Map framebuffer memory as PT_NOCACHE as this is memory from a * device and therefore must not be cached. */ - if (bi->bi_framebuffer != NULL && fb->framebuffer != 0) { + if (fb != NULL && fb->framebuffer != 0) { multiboot_tag_framebuffer_t *fb_tagp; fb_tagp = (multiboot_tag_framebuffer_t *)(uintptr_t) fb->framebuffer; |
