Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Jan 2016 07:55:47 +0000 (UTC)
From:      Andrew Rybchenko <arybchik@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r293818 - head/sys/dev/sfxge/common
Message-ID:  <201601130755.u0D7tlow069170@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: arybchik
Date: Wed Jan 13 07:55:47 2016
New Revision: 293818
URL: https://svnweb.freebsd.org/changeset/base/293818

Log:
  sfxge: cleanup: fix typo in unused EFX_QWORD_IS_SET64
  
  Submitted by:   Richard Houldsworth <rhouldsworth at solarflare.com>
  Sponsored by:   Solarflare Communications, Inc.
  MFC after:      2 days

Modified:
  head/sys/dev/sfxge/common/efx_types.h

Modified: head/sys/dev/sfxge/common/efx_types.h
==============================================================================
--- head/sys/dev/sfxge/common/efx_types.h	Wed Jan 13 07:46:21 2016	(r293817)
+++ head/sys/dev/sfxge/common/efx_types.h	Wed Jan 13 07:55:47 2016	(r293818)
@@ -536,7 +536,7 @@ extern int fix_lint;
 	    (_oword).eo_u32[3]) == ~((uint32_t)0))
 
 #define	EFX_QWORD_IS_SET64(_qword)					\
-	(((_qword).eq_u64[0]) == ~((uint32_t)0))
+	(((_qword).eq_u64[0]) == ~((uint64_t)0))
 
 #define	EFX_QWORD_IS_SET32(_qword)					\
 	(((_qword).eq_u32[0] &						\



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