This CL removes the unnecessary `>= 0' check on `mode_val' and
`ind_val', which are both guint values extracted from a GArray with
guint values, in mm_3gpp_parse_cmer_test_response to address the
following compiler warnings:

mm-modem-helpers.c:2933:22: error: comparison of unsigned expression >=
0 is always true [-Werror,-Wtautological-compare]
        if (mode_val >= 0 && mode_val <= 3)
            ~~~~~~~~ ^  ~
mm-modem-helpers.c:2943:21: error: comparison of unsigned expression >=
0 is always true [-Werror,-Wtautological-compare]
        if (ind_val >= 0 && ind_val <= 2)
            ~~~~~~~ ^  ~
---
 src/mm-modem-helpers.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mm-modem-helpers.c b/src/mm-modem-helpers.c
index ddf69406..73822e14 100644
--- a/src/mm-modem-helpers.c
+++ b/src/mm-modem-helpers.c
@@ -2930,7 +2930,7 @@ mm_3gpp_parse_cmer_test_response (const gchar     
*response,
         guint mode_val;
 
         mode_val = g_array_index (array_supported_modes, guint, i);
-        if (mode_val >= 0 && mode_val <= 3)
+        if (mode_val <= 3)
             supported_modes |= (MM3gppCmerMode) (1 << mode_val);
         else
             mm_dbg ("Unknown +CMER mode reported: %u", mode_val);
@@ -2940,7 +2940,7 @@ mm_3gpp_parse_cmer_test_response (const gchar     
*response,
         guint ind_val;
 
         ind_val = g_array_index (array_supported_inds, guint, i);
-        if (ind_val >= 0 && ind_val <= 2)
+        if (ind_val <= 2)
             supported_inds |= (MM3gppCmerInd) (1 << ind_val);
         else
             mm_dbg ("Unknown +CMER ind reported: %u", ind_val);
-- 
2.13.0.506.g27d5fe0cd-goog

_______________________________________________
ModemManager-devel mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/modemmanager-devel

Reply via email to