File diff r2106:c87c9f2f4751 → r2107:9afd88815f5d
strgen/strgen.c
Show inline comments
 
@@ -634,7 +634,7 @@ static void ExtractCommandString(ParsedC
 

	
 
	for(;;) {
 
		// read until next command from a.
 
		ar = ParseCommandString(&s, param, &argno, &casei);
 
		ar = ParseCommandString((const char **)&s, param, &argno, &casei);
 
		if (ar == NULL)
 
			break;
 

	
 
@@ -891,7 +891,7 @@ static void MakeHashOfStrings()
 
			hash = MyHashStr(hash, s + 1);
 

	
 
			s = ls->english;
 
			while ((cs = ParseCommandString(&s, buf, &argno, &casei)) != NULL) {
 
			while ((cs = ParseCommandString((const char **)&s, buf, &argno, &casei)) != NULL) {
 
				if (cs->flags & C_DONTCOUNT)
 
					continue;