File sim-fix_compiler_warnings.diff of Package kde3-sim
--- plugins/msn/msnclient.cpp 2004-03-28 20:45:08.000000000 +0200
+++ plugins/msn/msnclient.cpp 2007-01-08 20:49:33.000000000 +0100
@@ -1158,7 +1158,9 @@
i++;
if (i + 2 > (int)(s.length()))
break;
- res += QChar((char)((fromHex(s[i++]) << 4) + fromHex(s[i])));
+ c = (char) (fromHex(s[i++]) << 4);
+ res += (c + (char)fromHex(s[i]));
+ // res += QChar((char)((fromHex(s[i++]) << 4) + fromHex(s[i])));
}
return res;
}