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

Git pushed a commit to branch master
in repository ffmpeg.

commit 11536e78d22bfca6051d80d126e755b4bd45987a
Author:     Kacper Michajłow <[email protected]>
AuthorDate: Tue Aug 11 16:08:08 2026 +0200
Commit:     Kacper Michajłow <[email protected]>
CommitDate: Wed Aug 12 17:21:05 2026 +0200

    checkasm/sw_ops: don't return a value from void functions
    
    Fixes: e65dab2b59
    Signed-off-by: Kacper Michajłow <[email protected]>
---
 tests/checkasm/sw_ops.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/checkasm/sw_ops.c b/tests/checkasm/sw_ops.c
index 21b064e897..7b34af4a38 100644
--- a/tests/checkasm/sw_ops.c
+++ b/tests/checkasm/sw_ops.c
@@ -452,12 +452,12 @@ static void check_range(const char *name, const SwsUOp 
*uop,
                         const unsigned ranges[NB_PLANES])
 {
     /* Test all planes to ensure data remains untouched */
-    return check_uop(name, uop, SWS_COMP_ALL, SWS_COMP_ALL, ranges);
+    check_uop(name, uop, SWS_COMP_ALL, SWS_COMP_ALL, ranges);
 }
 
 static void check_simple(const char *name, const SwsUOp *uop)
 {
-    return check_range(name, uop, NULL);
+    check_range(name, uop, NULL);
 }
 
 static void check_scalar(const char *name, SwsUOp *uop)
@@ -471,7 +471,7 @@ static void check_vec4(const char *name, SwsUOp *uop)
     for (int i = 0; i < 4; i++)
         uop->data.vec4[i] = rndpx(uop->type);
 
-    return check_simple(name, uop);
+    check_simple(name, uop);
 }
 
 #define MK_RANGES(R) ((const unsigned[]) { R, R, R, R })
@@ -608,7 +608,7 @@ static void check_linear(const char *name, SwsUOp *uop)
         }
     }
 
-    return check_simple(name, uop);
+    check_simple(name, uop);
 }
 
 static void check_dither(const char *name, SwsUOp *uop)

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to