mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-19 15:30:50 +00:00
[qwaq] Fix an uninitialized var warning
This commit is contained in:
parent
bde3124533
commit
1dd05a8ac9
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue