From: blub Date: Wed, 30 Dec 2009 11:09:00 +0000 (+0000) Subject: get rid of a warning X-Git-Tag: xonotic-v0.1.0preview~904 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=527e482b1018e75dd9c96f3dc9229c40a0f170bf;p=xonotic%2Fdarkplaces.git get rid of a warning git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9744 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/utf8lib.c b/utf8lib.c index 16a94a7a..6fbd5f62 100644 --- a/utf8lib.c +++ b/utf8lib.c @@ -62,9 +62,8 @@ Uchar utf8_range[5] = { static qboolean u8_analyze(const char *_s, size_t *_start, size_t *_len, Uchar *_ch, size_t _maxlen) { const unsigned char *s = (const unsigned char*)_s; - //unsigned char bt;//, bc; - size_t i; - size_t bits, j; + size_t i, j; + size_t bits = 0; Uchar ch; i = 0;