svn commit: r360782 - stable/11/sys/dev/atkbdc

Dimitry Andric dim at FreeBSD.org
Thu May 7 15:12:57 UTC 2020


Author: dim
Date: Thu May  7 15:12:56 2020
New Revision: 360782
URL: https://svnweb.freebsd.org/changeset/base/360782

Log:
  MFC r306679 (by glebius):
  
  Fix indentation.
  
  CID:	1363671

Modified:
  stable/11/sys/dev/atkbdc/psm.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/atkbdc/psm.c
==============================================================================
--- stable/11/sys/dev/atkbdc/psm.c	Thu May  7 14:49:17 2020	(r360781)
+++ stable/11/sys/dev/atkbdc/psm.c	Thu May  7 15:12:56 2020	(r360782)
@@ -3366,7 +3366,7 @@ proc_synaptics(struct psm_softc *sc, packetbuf_t *pb, 
 				guest_buttons |= MOUSE_BUTTON1DOWN;
 			if (pb->ipacket[1] & 0x04)
 				guest_buttons |= MOUSE_BUTTON2DOWN;
-				if (pb->ipacket[1] & 0x02)
+			if (pb->ipacket[1] & 0x02)
 				guest_buttons |= MOUSE_BUTTON3DOWN;
 #ifdef EVDEV_SUPPORT
 			if (evdev_rcpt_mask & EVDEV_RCPT_HW_MOUSE) {


More information about the svn-src-all mailing list