[fixed-to-float.sh] Replace uses of COGL_FIXED_FROM_INT not followed by a space
authorRobert Bragg <robert@linux.intel.com>
Thu, 8 Jan 2009 22:38:33 +0000 (22:38 +0000)
committerRobert Bragg <robert@linux.intel.com>
Mon, 12 Jan 2009 17:13:58 +0000 (17:13 +0000)
Previously the script assumed a space before the open bracket, so it missed
a few cases in clutter/cogl/gles/cogl.c

fixed-to-float.sh

index 49cc145..86dd016 100755 (executable)
@@ -35,6 +35,7 @@ sed -i 's/#define DET2X(a,b,c,d).*/#define DET2X(a,b,c,d)   ((a * d) - (b * c))/
 #works out fine for most cases...
 find ./clutter -iname '*.[ch]' -exec sed -i 's/COGL_FIXED_TO_INT//g' {} \;
 find ./clutter -iname '*.[ch]' -exec sed -i 's/COGL_FIXED_FROM_INT /(float)/g' {} \;
+find ./clutter -iname '*.[ch]' -exec sed -i 's/COGL_FIXED_FROM_INT/(float)/g' {} \;
 find ./clutter -iname '*.[ch]' -exec sed -i 's/COGL_FIXED_TO_FLOAT//g' {} \;
 find ./clutter -iname '*.[ch]' -exec sed -i 's/COGL_FIXED_FROM_FLOAT//g' {} \;
 find ./clutter -iname '*.[ch]' -exec sed -i 's/COGL_FIXED_TO_DOUBLE /(double)/g' {} \;