Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Jan 2016 16:29:34 +0000 (UTC)
From:      Andrew Rybchenko <arybchik@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r294018 - stable/10/sys/dev/sfxge/common
Message-ID:  <201601141629.u0EGTY1I064064@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: arybchik
Date: Thu Jan 14 16:29:33 2016
New Revision: 294018
URL: https://svnweb.freebsd.org/changeset/base/294018

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

Modified:
  stable/10/sys/dev/sfxge/common/efx_types.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/sfxge/common/efx_types.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_types.h	Thu Jan 14 16:28:21 2016	(r294017)
+++ stable/10/sys/dev/sfxge/common/efx_types.h	Thu Jan 14 16:29:33 2016	(r294018)
@@ -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?201601141629.u0EGTY1I064064>