commit 8f23177469fef16a01ce8c4b2cdd1d4f88dc324b parent a63b868b834e190fe63ea2871b9570a837ba2f61 Author: wwp <subscript@free.fr> Date: Wed, 5 Mar 2025 18:47:16 +0100 Fix unit test compilation. Diffstat:
| M | src/common/tests/pkcs5_pbkdf2_test.c | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/common/tests/pkcs5_pbkdf2_test.c b/src/common/tests/pkcs5_pbkdf2_test.c @@ -54,9 +54,9 @@ test_pkcs5_pbkdf2(gconstpointer user_data) gint ret; if (data->rounds > 10000 && !g_test_slow()) { - gchar *msg = "Time-intensive test, rerun in slow mode to run it."; + const gchar *msg = "Time-intensive test, rerun in slow mode to run it."; g_test_skip(msg); - g_test_message(msg); + g_test_message("%s", msg); return; }