The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=e9b261f297cac146f0c9f895c16debe1c4cf8978
commit e9b261f297cac146f0c9f895c16debe1c4cf8978 Author: rilysh <[email protected]> AuthorDate: 2024-02-03 00:38:13 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2024-02-03 01:35:01 +0000 lib/libvgl/main.c: remove an extra semicolon Signed-off-by: rilysh <[email protected]> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/959 --- lib/libvgl/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libvgl/main.c b/lib/libvgl/main.c index b98e59ff801f..13e376c48417 100644 --- a/lib/libvgl/main.c +++ b/lib/libvgl/main.c @@ -91,7 +91,7 @@ struct vt_mode smode; if (VGLOldModeInfo.vi_flags & V_INFO_GRAPHICS) { size[0] = VGLOldVInfo.mv_csz; size[1] = VGLOldVInfo.mv_rsz; - size[2] = VGLOldVInfo.font_size;; + size[2] = VGLOldVInfo.font_size; ioctl(0, KDRASTER, size); } if (VGLModeInfo.vi_mem_model != V_INFO_MM_DIRECT)
