tests: pass the right type to SPA_POD_Long()

This commit is contained in:
Wim Taymans 2020-01-15 16:39:00 +01:00
parent 102a3a3fe0
commit f649c6f3c1

View file

@ -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"),