From 82049b95950cf164932242f375fc0922b1865f5e Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Wed, 19 May 2010 06:41:35 -0700 Subject: util: Remove unnecessary semicolons in Python scripts. --- src/gallium/auxiliary/util/u_half.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gallium/auxiliary/util/u_half.py') diff --git a/src/gallium/auxiliary/util/u_half.py b/src/gallium/auxiliary/util/u_half.py index 8007482e97..915cf3b927 100644 --- a/src/gallium/auxiliary/util/u_half.py +++ b/src/gallium/auxiliary/util/u_half.py @@ -83,11 +83,11 @@ for i in xrange(1, 1024): # normalize number while (m & 0x00800000) == 0: - e -= 0x00800000; - m <<= 1; + e -= 0x00800000 + m <<= 1 - m &= ~0x00800000; - e += 0x38800000; + m &= ~0x00800000 + e += 0x38800000 value(m | e) # normals -- cgit v1.2.3