(svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular

This commit is contained in:
tron
2006-06-27 21:25:53 +00:00
parent 7fa72c5e2f
commit 772fbda3e3
77 changed files with 1051 additions and 1037 deletions

View File

@@ -2467,17 +2467,19 @@ static void ParamSet(byte *buf, int len)
break;
case 0x05:
if ((int32)src2 < 0)
if ((int32)src2 < 0) {
res = src1 >> -(int32)src2;
else
} else {
res = src1 << src2;
}
break;
case 0x06:
if ((int32)src2 < 0)
if ((int32)src2 < 0) {
res = (int32)src1 >> -(int32)src2;
else
} else {
res = (int32)src1 << src2;
}
break;
case 0x07: /* Bitwise AND */