From f649c6f3c1411bb209cd0a02facf78ae4b07d093 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 15 Jan 2020 16:39:00 +0100 Subject: [PATCH] tests: pass the right type to SPA_POD_Long() --- spa/tests/test-pod.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spa/tests/test-pod.c b/spa/tests/test-pod.c index bb06f12cc..e88f9336c 100644 --- a/spa/tests/test-pod.c +++ b/spa/tests/test-pod.c @@ -881,7 +881,7 @@ static void test_varargs2(void) 1, SPA_POD_Bool(true), 2, SPA_POD_Id(SPA_TYPE_Id), 3, SPA_POD_Int(3), - 4, SPA_POD_Long(4), + 4, SPA_POD_Long(4LL), 5, SPA_POD_Float(0.453f), 6, SPA_POD_Double(0.871), 7, SPA_POD_String("test"), @@ -1106,7 +1106,7 @@ static void test_parser(void) 1, SPA_POD_Bool(true), 2, SPA_POD_Id(SPA_TYPE_Id), 3, SPA_POD_Int(3), - 4, SPA_POD_Long(4), + 4, SPA_POD_Long(4LL), 5, SPA_POD_Float(0.453f), 6, SPA_POD_Double(0.871), 7, SPA_POD_String("test"), @@ -1236,7 +1236,7 @@ static void test_parser2(void) SPA_POD_Bool(true), SPA_POD_Id(SPA_TYPE_Id), SPA_POD_Int(3), - SPA_POD_Long(4), + SPA_POD_Long(4LL), SPA_POD_Float(0.453f), SPA_POD_Double(0.871), SPA_POD_String("test"),