Module: Mesa
Branch: master
Commit: 906c60d0b7c6ad3e78c142643634e4189c07b57f
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=906c60d0b7c6ad3e78c142643634e4189c07b57f

Author: Brian Paul <[email protected]>
Date:   Wed Feb  4 08:38:28 2009 -0700

demos: silence uninitialized var warning

---

 progs/demos/engine.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/progs/demos/engine.c b/progs/demos/engine.c
index 6040a2f..d1c3237 100644
--- a/progs/demos/engine.c
+++ b/progs/demos/engine.c
@@ -555,7 +555,7 @@ SquareWithHole(float squareSize, float holeRadius)
    for (i = 0; i <= 360; i += 5) {
       const float x1 = holeRadius * cos(DEG_TO_RAD(i));
       const float y1 = holeRadius * sin(DEG_TO_RAD(i));
-      float x2, y2;
+      float x2 = 0.0F, y2 = 0.0F;
       if (i > 315 || i <= 45) {
          x2 = squareSize;
          y2 = squareSize * tan(DEG_TO_RAD(i));

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to