From 0bcc64a162eea143d17abe38559df9c214e740a0 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Tue, 7 Jan 2014 00:08:31 +0900 Subject: [PATCH] 3d, flip_page test: Removed dead assignments which were reported by clang. https://build.enlightenment.org/job/nightly_elm_clang_x86_64/lastSuccessfulBuild/artifact/scan-build/build/2014-01-05-1/report-XJSqtb.html#EndPath https://build.enlightenment.org/job/nightly_elm_clang_x86_64/lastSuccessfulBuild/artifact/scan-build/build/2014-01-05-1/report-XcpYrk.html#EndPath --- src/bin/test_3d.c | 1 - src/bin/test_flip_page.c | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/bin/test_3d.c b/src/bin/test_3d.c index 92f78cf35..3fa9d8dce 100644 --- a/src/bin/test_3d.c +++ b/src/bin/test_3d.c @@ -134,7 +134,6 @@ _cube_pos(Cube *c, evas_map_point_coord_get(m, j, NULL, NULL, &(tz[j])); mz[i] = (tz[0] + tz[1] + tz[2] + tz[3]) / 4; } - sorted = 0; do { sorted = 1; diff --git a/src/bin/test_flip_page.c b/src/bin/test_flip_page.c index 872bb8d6e..46504628a 100644 --- a/src/bin/test_flip_page.c +++ b/src/bin/test_flip_page.c @@ -316,7 +316,7 @@ _state_update(State *st) Slice *sl; double b, minv = 0.0, minva, mgrad; int gx, gy, gszw, gszh, gw, gh, col, row, nw, nh; - double rho, A, theta, perc, percm, n, rhol, Al, thetal; + double rho, A, theta, perc, n, rhol, Al, thetal; Vertex3 *tvo, *tvol; st->backflip = 0; @@ -408,11 +408,8 @@ _state_update(State *st) } perc = (double)xx2 / (double)xx1; - percm = (double)mx / (double)xx1; if (perc < 0.0) perc = 0.0; else if (perc > 1.0) perc = 1.0; - if (percm < 0.0) percm = 0.0; - else if (percm > 1.0) percm = 1.0; minva = atan(minv) / (M_PI / 2); if (minva < 0.0) minva = -minva; -- 2.34.1