From 779894b6712d3671163e3a2ecd616446e8c547f5 Mon Sep 17 00:00:00 2001 From: Harald Oehlmann Date: Mon, 4 Jan 2016 18:27:53 +0100 Subject: [PATCH] Ticket 12: if(done = 0) corrected --- backend/dmatrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/dmatrix.c b/backend/dmatrix.c index 796e3325..a3f575cc 100755 --- a/backend/dmatrix.c +++ b/backend/dmatrix.c @@ -328,7 +328,7 @@ int look_ahead_test(unsigned char source[], int sourcelen, int position, int cur done = 0; if((source[sp] >= ' ') && (source[sp] <= '^')) { edf_count += (3.0f / 4.0f); done = 1; } if(source[sp] > 127) { edf_count += (17.0f / 4.0f); done = 1; } - if(done = 0) edf_count += (13.0f / 4.0f); + if(done == 0) edf_count += (13.0f / 4.0f); /* step (q) */ /* b256 */