From 6cbc861ebcc717307cda070f1306c93e45e47d3f Mon Sep 17 00:00:00 2001 From: Richard Cohen Date: Wed, 22 Sep 2004 19:12:38 +0000 Subject: [PATCH] Change variable name from l to k. --- programs/wineconsole/user.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/programs/wineconsole/user.c b/programs/wineconsole/user.c index 2ef463ee0c9..0c6a71a1ab4 100644 --- a/programs/wineconsole/user.c +++ b/programs/wineconsole/user.c @@ -439,11 +439,11 @@ HFONT WCUSER_CopyFont(struct config_data* config, HWND hWnd, const LOGFONT* lf) GetCharWidth32(hDC, tm.tmFirstChar, tm.tmFirstChar, &w); for (i = tm.tmFirstChar + 1; i <= tm.tmLastChar; i += sizeof(buf) / sizeof(buf[0])) { - int j, l; + int j, k; - l = min(tm.tmLastChar - i, sizeof(buf) / sizeof(buf[0]) - 1); - GetCharWidth32(hDC, i, i + l, buf); - for (j = 0; j <= l; j++) + k = min(tm.tmLastChar - i, sizeof(buf) / sizeof(buf[0]) - 1); + GetCharWidth32(hDC, i, i + k, buf); + for (j = 0; j <= k; j++) { if (buf[j] != w) {