Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 8 Apr 2014 17:50:28 +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: r264261 - head/sys/boot/ficl
Message-ID:  <201404081750.s38HoSFs034579@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Tue Apr  8 17:50:27 2014
New Revision: 264261
URL: http://svnweb.freebsd.org/changeset/base/264261

Log:
  Correct a variable's type for 64-bit Ficl
  
  FICL_INT is long.

Modified:
  head/sys/boot/ficl/words.c

Modified: head/sys/boot/ficl/words.c
==============================================================================
--- head/sys/boot/ficl/words.c	Tue Apr  8 17:40:09 2014	(r264260)
+++ head/sys/boot/ficl/words.c	Tue Apr  8 17:50:27 2014	(r264261)
@@ -2567,7 +2567,7 @@ static void setObjectFlag(FICL_VM *pVM)
 
 static void isObject(FICL_VM *pVM)
 {
-    int flag;
+    FICL_INT flag;
     FICL_WORD *pFW = (FICL_WORD *)stackPopPtr(pVM->pStack);
     
     flag = ((pFW != NULL) && (pFW->flags & FW_ISOBJECT)) ? FICL_TRUE : FICL_FALSE;



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