소스 검색

Added newline to amalgameted file

This fixes a warning with some compilers.
Root-Core 8 년 전
부모
커밋
cc5059eebe
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tools/amalgamate.py

+ 1 - 1
tools/amalgamate.py

@@ -75,7 +75,7 @@ if not is_c:
 } // extern "C"
 #endif
 
-#endif /* %s */''' % (outname.upper() + u"_H_"))
+#endif /* %s */\n''' % (outname.upper() + u"_H_"))
 file.close()
 
 print ("The size of "+args.outfile+" is "+ str(os.path.getsize(args.outfile))+" Bytes.")