src/strgen/strgen.cpp
branchcpp_gui
changeset 6308 646711c5feaa
parent 6298 c30fe89622df
child 9911 0b8b245a2391
--- a/src/strgen/strgen.cpp	Sun Apr 15 17:04:44 2007 +0000
+++ b/src/strgen/strgen.cpp	Sat Apr 21 08:23:57 2007 +0000
@@ -730,7 +730,7 @@
 {
 	ParsedCommandStruct templ;
 	ParsedCommandStruct lang;
-	int i,j;
+	int i, j;
 	bool result = true;
 
 	ExtractCommandString(&templ, b, true);
@@ -914,7 +914,7 @@
 	in = fopen(file, "r");
 	if (in == NULL) fatal("Cannot open file");
 	_cur_line = 1;
-	while (fgets(buf, sizeof(buf),in) != NULL) {
+	while (fgets(buf, sizeof(buf), in) != NULL) {
 		rstrip(buf);
 		HandleString(buf, english);
 		_cur_line++;