svn commit: r333666 - head/sys/dev/usb/input

Ed Maste emaste at FreeBSD.org
Wed May 16 03:17:38 UTC 2018


Author: emaste
Date: Wed May 16 03:17:37 2018
New Revision: 333666
URL: https://svnweb.freebsd.org/changeset/base/333666

Log:
  Attempt to fix build by removing EOF backslash-newline
  
  GCC complains:
  In file included from .../sys/dev/usb/input/uhid.c:77:
  .../usb_rdesc.h:280:37: error: backslash-newline at end of file

Modified:
  head/sys/dev/usb/input/usb_rdesc.h

Modified: head/sys/dev/usb/input/usb_rdesc.h
==============================================================================
--- head/sys/dev/usb/input/usb_rdesc.h	Wed May 16 03:08:06 2018	(r333665)
+++ head/sys/dev/usb/input/usb_rdesc.h	Wed May 16 03:17:37 2018	(r333666)
@@ -303,4 +303,4 @@
     0x95, 0x0A,         /*          Report Count (10),      */\
     0x81, 0x01,         /*          Input (Constant),       */\
     0xC0,               /*      End Collection,             */\
-    0xC0                /*  End Collection                  */\
+    0xC0                /*  End Collection                  */


More information about the svn-src-head mailing list