util: Remove unnecessary semicolons in Python scripts.
authorVinson Lee <vlee@vmware.com>
Wed, 19 May 2010 13:41:35 +0000 (06:41 -0700)
committerVinson Lee <vlee@vmware.com>
Wed, 19 May 2010 13:43:14 +0000 (06:43 -0700)
src/gallium/auxiliary/util/u_format_parse.py
src/gallium/auxiliary/util/u_half.py

index 7076c67..ddb9f24 100755 (executable)
@@ -43,7 +43,7 @@ ZS = 'zs'
 
 
 def is_pot(x):
-   return (x & (x - 1)) == 0;
+   return (x & (x - 1)) == 0
 
 
 VERY_LARGE = 99999999999999999999999
index 8007482..915cf3b 100644 (file)
@@ -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