This is an automated email from the git hooks/post-receive script.

git pushed a commit to reference refs/pull/114/head
in repository efl.

View the commit online.

commit 074d74c381ef5ea510595aa1419a749a2acac423
Author: [email protected] <[email protected]>
AuthorDate: Wed Sep 16 21:01:29 2026 -0600

    evas_ector_gl: one if is enough
---
 src/modules/evas/engines/gl_generic/evas_ector_gl_span.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/modules/evas/engines/gl_generic/evas_ector_gl_span.c b/src/modules/evas/engines/gl_generic/evas_ector_gl_span.c
index 2cf80c2a33..8c7a57cf28 100644
--- a/src/modules/evas/engines/gl_generic/evas_ector_gl_span.c
+++ b/src/modules/evas/engines/gl_generic/evas_ector_gl_span.c
@@ -139,9 +139,7 @@ span_collector_resize(Span_Collector *sc, int h)
 {
    int i;
 
-   if (!sc || (h <= 0)) return;
-
-   if (sc->h == h) return;  // no change at all
+   if (!sc || (h <= 0) || (sc->h == h)) return;
 
    sc->h = h;
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to