]> git.wh0rd.org Git - nano.git/commitdiff
yet another cleanup
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 13 Jun 2005 20:19:03 +0000 (20:19 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 13 Jun 2005 20:19:03 +0000 (20:19 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2655 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/chars.c

index 341280c13908690d426b31e06f1dce00f4c84956..e5a821596fb5211da006f358d4ed0627a48a64b3 100644 (file)
@@ -805,7 +805,7 @@ char *mbstrchr(const char *s, char *c)
        char *s_mb = charalloc(MB_CUR_MAX);
        const char *q = s;
        wchar_t ws, wc;
-       int s_mb_len, c_mb_len = mbtowc(&wc, c, MB_CUR_MAX);
+       int c_mb_len = mbtowc(&wc, c, MB_CUR_MAX);
 
        if (c_mb_len <= 0) {
            mbtowc(NULL, NULL, 0);
@@ -813,7 +813,7 @@ char *mbstrchr(const char *s, char *c)
        }
 
        while (*s != '\0') {
-           s_mb_len = parse_mbchar(s, s_mb, NULL, NULL);
+           int s_mb_len = parse_mbchar(s, s_mb, NULL, NULL);
 
            if (mbtowc(&ws, s_mb, s_mb_len) <= 0) {
                mbtowc(NULL, NULL, 0);