[Xorp-cvs] SF.net SVN: xorp:[11522] trunk/xorp/site_scons/config/allconfig.py

johntconklin at users.sourceforge.net johntconklin at users.sourceforge.net
Wed Aug 26 17:06:14 PDT 2009


Revision: 11522
          http://xorp.svn.sourceforge.net/xorp/?rev=11522&view=rev
Author:   johntconklin
Date:     2009-08-27 00:06:14 +0000 (Thu, 27 Aug 2009)

Log Message:
-----------
Fix for loop indentation and lack of newlines after #include statements in 
the fixed sized integer (int8_t, uint8_t, int16_t, ...) feature tests.

Modified Paths:
--------------
    trunk/xorp/site_scons/config/allconfig.py

Modified: trunk/xorp/site_scons/config/allconfig.py
===================================================================
--- trunk/xorp/site_scons/config/allconfig.py	2009-08-26 22:10:09 UTC (rev 11521)
+++ trunk/xorp/site_scons/config/allconfig.py	2009-08-27 00:06:14 UTC (rev 11522)
@@ -45,11 +45,11 @@
                   'int32_t', 'uint32_t',
                   'int64_t', 'uint64_t'  ]:
         includes = ""
-    if has_inttypes_h:
-    	includes += '#include <inttypes.h>'
-    if has_stdint_h:
-    	includes += '#include <stdint.h>'
-    conf.CheckType(type, includes)
+	if has_inttypes_h:
+	    includes += '#include <inttypes.h>\n'
+	if has_stdint_h:
+	    includes += '#include <stdint.h>\n'
+	conf.CheckType(type, includes)
     
     ##########
     # stdc


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Xorp-cvs mailing list