Fix warning

This commit is contained in:
Alexander S. Aganichev
2004-01-20 14:58:37 +00:00
parent 49adbfab72
commit 86705f4181
6 changed files with 36 additions and 36 deletions

View File

@@ -421,7 +421,7 @@ void Rot13(GMsg* msg) {
if(not (line->type & (GLINE_KLUDGE|GLINE_TEAR|GLINE_ORIG))) {
for(ptr = 0; ptr != line->txt.length(); ptr++) {
c = line->txt[ptr];
line->txt[ptr] = ROT13_DECODE(c);
line->txt[ptr] = ROT13_DECODE(c & 0xff);
}
}
line = line->next;