Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 May 2018 03:17:38 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r333666 - head/sys/dev/usb/input
Message-ID:  <201805160317.w4G3HcLF086689@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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                  */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805160317.w4G3HcLF086689>