Date: Wed, 30 Aug 2017 22:58:11 +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: r323040 - head/sys/mips/rmi Message-ID: <201708302258.v7UMwBAL076545@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: emaste Date: Wed Aug 30 22:58:11 2017 New Revision: 323040 URL: https://svnweb.freebsd.org/changeset/base/323040 Log: xls_ehci: eliminate 'format string is not a string literal' warning Reported by: Clang MFC after: 1 week Sponsored by: The FreeBSD Foundation Modified: head/sys/mips/rmi/xls_ehci.c Modified: head/sys/mips/rmi/xls_ehci.c ============================================================================== --- head/sys/mips/rmi/xls_ehci.c Wed Aug 30 22:54:11 2017 (r323039) +++ head/sys/mips/rmi/xls_ehci.c Wed Aug 30 22:58:11 2017 (r323040) @@ -130,7 +130,7 @@ ehci_xls_attach(device_t self) device_set_ivars(sc->sc_bus.bdev, &sc->sc_bus); device_set_desc(sc->sc_bus.bdev, xlr_usb_dev_desc); - sprintf(sc->sc_vendor, xlr_vendor_desc); + strlcpy(sc->sc_vendor, xlr_vendor_desc, sizeof(sc->sc_vendor)); err = bus_setup_intr(self, sc->sc_irq_res, INTR_TYPE_BIO | INTR_MPSAFE, NULL,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708302258.v7UMwBAL076545>