This commit is contained in:
Anthony Minessale 2011-09-08 16:55:40 -05:00
parent 7d612da440
commit 329e29f69d
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ SWITCH_DECLARE(switch_status_t) switch_b64_encode(unsigned char *in, switch_size
b = (b << 8) + in[x];
l += 8;
if ((X % 1024) == 0) {
if ((x % 1024) == 0) {
switch_cond_next(); /* give other processes/threads a chance */
}
while (l >= 6) {