fix ATIS on 64bit machines
This commit is contained in:
parent
179186e414
commit
a71a5cdf45
1 changed files with 1 additions and 1 deletions
|
@ -442,7 +442,7 @@ int FGATIS::GenTransmission(const int regen, const int special) {
|
||||||
// be relatively-more acceptable to the primitive tts system.
|
// be relatively-more acceptable to the primitive tts system.
|
||||||
// Note that : ; and . are among the token-delimeters recognized
|
// Note that : ; and . are among the token-delimeters recognized
|
||||||
// by the tts system.
|
// by the tts system.
|
||||||
for (unsigned int where;;) {
|
for (size_t where;;) {
|
||||||
where = transmission.find_first_of(":.");
|
where = transmission.find_first_of(":.");
|
||||||
if (where == string::npos) break;
|
if (where == string::npos) break;
|
||||||
transmission.replace(where, 1, " /_ ");
|
transmission.replace(where, 1, " /_ ");
|
||||||
|
|
Loading…
Reference in a new issue