aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--include/utils/SkRandom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/utils/SkRandom.h b/include/utils/SkRandom.h
index 6ab1cd1723..3e2ef201ad 100644
--- a/include/utils/SkRandom.h
+++ b/include/utils/SkRandom.h
@@ -197,7 +197,7 @@ public:
*/
float nextF() {
unsigned int floatint = 0x3f800000 | (this->nextU() >> 9);
- float f = *SkTCast<float*>(&floatint) - 1.0f;
+ float f = SkBits2Float(floatint) - 1.0f;
return f;
}