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

clord at FreeBSD.org clord at FreeBSD.org
Wed Jul 15 21:18:28 UTC 2015


Author: clord
Date: Wed Jul 15 21:18:27 2015
New Revision: 288460
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=288460

Log:
  Change function call to one compatible with libstand.
  

Modified:
  soc2015/clord/head/sys/contrib/ficl/primitives.c

Modified: soc2015/clord/head/sys/contrib/ficl/primitives.c
==============================================================================
--- soc2015/clord/head/sys/contrib/ficl/primitives.c	Wed Jul 15 21:16:39 2015	(r288459)
+++ soc2015/clord/head/sys/contrib/ficl/primitives.c	Wed Jul 15 21:18:27 2015	(r288460)
@@ -414,7 +414,7 @@
 			desiredLength = isdigit((unsigned char)*format);
 			if (desiredLength)
 				{
-				desiredLength = strtoul(format, &format, 10);
+				desiredLength = strtol(format, &format, 10);
 				if (format == formatStop)
 					break;
 				}


More information about the svn-soc-all mailing list