From 329e29f69d8f71ef4d5f98724bc6dcb8d72899aa Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 8 Sep 2011 16:55:40 -0500 Subject: [PATCH] doh --- src/switch_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_utils.c b/src/switch_utils.c index 3b9ad79c2f..ea6a0a2dfa 100644 --- a/src/switch_utils.c +++ b/src/switch_utils.c @@ -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) {