Patch "kselftest/alsa - mixer-test: Fix the print format specifier warning" has been added to the 6.6-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    kselftest/alsa - mixer-test: Fix the print format specifier warning

to the 6.6-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     kselftest-alsa-mixer-test-fix-the-print-format-speci.patch
and it can be found in the queue-6.6 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 9e5ddd854472b58657e881bf5eb1ff4b3e6cd84d
Author: Mirsad Todorovac <mirsad.todorovac@xxxxxxxxxxxx>
Date:   Sun Jan 7 18:37:04 2024 +0100

    kselftest/alsa - mixer-test: Fix the print format specifier warning
    
    [ Upstream commit 3f47c1ebe5ca9c5883e596c7888dec4bec0176d8 ]
    
    The GCC 13.2.0 compiler issued the following warning:
    
    mixer-test.c: In function ‘ctl_value_index_valid’:
    mixer-test.c:322:79: warning: format ‘%lld’ expects argument of type ‘long long int’, \
                                  but argument 5 has type ‘long int’ [-Wformat=]
      322 |                         ksft_print_msg("%s.%d value %lld more than maximum %lld\n",
          |                                                                            ~~~^
          |                                                                               |
          |                                                                               long long int
          |                                                                            %ld
      323 |                                        ctl->name, index, int64_val,
      324 |                                        snd_ctl_elem_info_get_max(ctl->info));
          |                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
          |                                        |
          |                                        long int
    
    Fixing the format specifier as advised by the compiler suggestion removes the
    warning.
    
    Fixes: 3f48b137d88e7 ("kselftest: alsa: Factor out check that values meet constraints")
    Cc: Mark Brown <broonie@xxxxxxxxxx>
    Cc: Jaroslav Kysela <perex@xxxxxxxx>
    Cc: Takashi Iwai <tiwai@xxxxxxxx>
    Cc: Shuah Khan <shuah@xxxxxxxxxx>
    Cc: linux-sound@xxxxxxxxxxxxxxx
    Cc: linux-kselftest@xxxxxxxxxxxxxxx
    Cc: linux-kernel@xxxxxxxxxxxxxxx
    Signed-off-by: Mirsad Todorovac <mirsad.todorovac@xxxxxxxxxxxx>
    Acked-by: Mark Brown <broonie@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20240107173704.937824-3-mirsad.todorovac@xxxxxxxxxxxx
    Signed-off-by: Takashi Iwai <tiwai@xxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/tools/testing/selftests/alsa/mixer-test.c b/tools/testing/selftests/alsa/mixer-test.c
index 208c2170c074..df942149c6f6 100644
--- a/tools/testing/selftests/alsa/mixer-test.c
+++ b/tools/testing/selftests/alsa/mixer-test.c
@@ -319,7 +319,7 @@ static bool ctl_value_index_valid(struct ctl_data *ctl,
 		}
 
 		if (int64_val > snd_ctl_elem_info_get_max64(ctl->info)) {
-			ksft_print_msg("%s.%d value %lld more than maximum %lld\n",
+			ksft_print_msg("%s.%d value %lld more than maximum %ld\n",
 				       ctl->name, index, int64_val,
 				       snd_ctl_elem_info_get_max(ctl->info));
 			return false;




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux