Date: Wed, 22 Jul 2015 20:17:28 GMT From: clord@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r288677 - soc2015/clord/head/sys/contrib/ficl Message-ID: <201507222017.t6MKHSXW027402@socsvn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: clord Date: Wed Jul 22 20:17:27 2015 New Revision: 288677 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=288677 Log: Specify type for defaultStackSize to prevent compiler warnings Modified: soc2015/clord/head/sys/contrib/ficl/compatibility.c Modified: soc2015/clord/head/sys/contrib/ficl/compatibility.c ============================================================================== --- soc2015/clord/head/sys/contrib/ficl/compatibility.c Wed Jul 22 19:58:21 2015 (r288676) +++ soc2015/clord/head/sys/contrib/ficl/compatibility.c Wed Jul 22 20:17:27 2015 (r288677) @@ -185,7 +185,7 @@ } extern ficlSystem *ficlSystemGlobal; -static defaultStackSize = FICL_DEFAULT_STACK_SIZE; +static int defaultStackSize = FICL_DEFAULT_STACK_SIZE; FICL_PLATFORM_EXTERN int ficlSetStackSize(int nStackCells) { if (defaultStackSize < nStackCells)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507222017.t6MKHSXW027402>