Skip to content

Commit

Permalink
Fix signed/unsigned mismatch.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkager committed Jan 5, 2016
1 parent e7bdc3c commit 5af923c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion liblouis/lou_translateString.c
Expand Up @@ -2163,7 +2163,8 @@ resolveEmphasisPassages(
const unsigned int bit_word,
const unsigned int bit_symbol)
{
int word_cnt = 0, pass_start = -1, pass_end = -1, word_start = -1, in_word = 0, in_pass = 0;
unsigned int word_cnt = 0;
int pass_start = -1, pass_end = -1, word_start = -1, in_word = 0, in_pass = 0;
int i;

if(!offset[lenPhrase])
Expand Down

0 comments on commit 5af923c

Please sign in to comment.