[qwaq] Fix an uninitialized var warning

This commit is contained in:
Bill Currie 2020-03-22 23:58:58 +09:00
parent bde3124533
commit 1dd05a8ac9

View file

@ -454,7 +454,7 @@ formatLine (txtbuffer_t *buffer, unsigned linePtr, unsigned xpos,
int coln = (colors->normal & ~0xff); int coln = (colors->normal & ~0xff);
int cols = (colors->selected & ~0xff); int cols = (colors->selected & ~0xff);
int col; int col;
byte c; byte c = 0;
int count; int count;
while (pos < xpos && ptr < buffer->textSize) { while (pos < xpos && ptr < buffer->textSize) {