summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerdgeist <>2012-02-27 00:32:00 +0000
committererdgeist <>2012-02-27 00:32:00 +0000
commitff0647cb2e3dec86bc364c900885f087675c1ba6 (patch)
treeffc0ba4794f21ebc4e234327a56bd41ab3c8f972
parentdc8b35add17157f49e8183765e721f3a295348a0 (diff)
missing variable declarations
-rwxr-xr-xvchat-user.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/vchat-user.c b/vchat-user.c
index 9450fbe..ce36220 100755
--- a/vchat-user.c
+++ b/vchat-user.c
@@ -305,6 +305,8 @@ static int ul_compare_middle_ncase( const void *a, const void *b ) {
305 305
306static int ul_compare_middle_case( const void *a, const void *b ) { 306static int ul_compare_middle_case( const void *a, const void *b ) {
307 const user *_a = (const user *)a, *_b = (const user *)b; 307 const user *_a = (const user *)a, *_b = (const user *)b;
308 size_t tmpstr_len;
309 int a_s, b_s;
308 310
309 /* Ensure that own nick appears last in list */ 311 /* Ensure that own nick appears last in list */
310 if( _a->flags & UL_ME ) return 1; 312 if( _a->flags & UL_ME ) return 1;