socsvn commit: r288677 - soc2015/clord/head/sys/contrib/ficl

clord at FreeBSD.org clord at FreeBSD.org
Wed Jul 22 20:17:29 UTC 2015


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)


More information about the svn-soc-all mailing list