commit | febfb0597f7bf055c08c387e7b13945fb7733e7a | [log] [tgz] |
---|---|---|
author | mwhapples@gmail.com <mwhapples@gmail.com@24698d54-e344-0410-af24-25bd253c2c7b> | Tue Apr 29 15:22:19 2014 |
committer | mwhapples@gmail.com <mwhapples@gmail.com@24698d54-e344-0410-af24-25bd253c2c7b> | Tue Apr 29 15:22:19 2014 |
tree | 33918f6b03b7e68bf0b79b8b93680cf399499985 | |
parent | bc9a2573da47befb687f14785875080a5cae7c8c [diff] |
Corrected another for loop to work with MSVC git-svn-id: http://liblouis.googlecode.com/svn/trunk@1160 24698d54-e344-0410-af24-25bd253c2c7b
diff --git a/liblouis/compileTranslationTable.c b/liblouis/compileTranslationTable.c index e15daaf..6c86ae0 100644 --- a/liblouis/compileTranslationTable.c +++ b/liblouis/compileTranslationTable.c
@@ -5230,7 +5230,7 @@ for (i = 0; i < strlen(msg); i++) logMessage[i] = msg[i]; p += strlen(msg); - for (int i = 0; i < wlen; i++) + for (i = 0; i < wlen; i++) { p += sprintf(p, formatString, wbuf[i]); }