git: 18a44589fcdc - main - vt(4): Use define instead of numerical value.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 05 Oct 2022 09:54:46 UTC
The branch main has been updated by hselasky:
URL: https://cgit.FreeBSD.org/src/commit/?id=18a44589fcdc9833b3756854c2db4b68e750d7d7
commit 18a44589fcdc9833b3756854c2db4b68e750d7d7
Author: Hans Petter Selasky <hselasky@FreeBSD.org>
AuthorDate: 2022-10-05 09:50:42 +0000
Commit: Hans Petter Selasky <hselasky@FreeBSD.org>
CommitDate: 2022-10-05 09:51:48 +0000
vt(4): Use define instead of numerical value.
No functional change intended.
MFC after: 1 week
Sponsored by: NVIDIA Networking
---
sys/dev/vt/vt_core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/vt/vt_core.c b/sys/dev/vt/vt_core.c
index ba39daec06e3..06503e8897aa 100644
--- a/sys/dev/vt/vt_core.c
+++ b/sys/dev/vt/vt_core.c
@@ -2237,7 +2237,7 @@ vt_mouse_event(int type, int x, int y, int event, int cnt, int mlevel)
if (!(vd->vd_mstate & MOUSE_BUTTON1DOWN))
mark = VTB_MARK_EXTEND;
else
- mark = 0;
+ mark = VTB_MARK_NONE;
break;
default:
mark = VTB_MARK_EXTEND;