mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
tests: pass the right type to SPA_POD_Long()
This commit is contained in:
parent
102a3a3fe0
commit
f649c6f3c1
1 changed files with 3 additions and 3 deletions
|
|
@ -881,7 +881,7 @@ static void test_varargs2(void)
|
||||||
1, SPA_POD_Bool(true),
|
1, SPA_POD_Bool(true),
|
||||||
2, SPA_POD_Id(SPA_TYPE_Id),
|
2, SPA_POD_Id(SPA_TYPE_Id),
|
||||||
3, SPA_POD_Int(3),
|
3, SPA_POD_Int(3),
|
||||||
4, SPA_POD_Long(4),
|
4, SPA_POD_Long(4LL),
|
||||||
5, SPA_POD_Float(0.453f),
|
5, SPA_POD_Float(0.453f),
|
||||||
6, SPA_POD_Double(0.871),
|
6, SPA_POD_Double(0.871),
|
||||||
7, SPA_POD_String("test"),
|
7, SPA_POD_String("test"),
|
||||||
|
|
@ -1106,7 +1106,7 @@ static void test_parser(void)
|
||||||
1, SPA_POD_Bool(true),
|
1, SPA_POD_Bool(true),
|
||||||
2, SPA_POD_Id(SPA_TYPE_Id),
|
2, SPA_POD_Id(SPA_TYPE_Id),
|
||||||
3, SPA_POD_Int(3),
|
3, SPA_POD_Int(3),
|
||||||
4, SPA_POD_Long(4),
|
4, SPA_POD_Long(4LL),
|
||||||
5, SPA_POD_Float(0.453f),
|
5, SPA_POD_Float(0.453f),
|
||||||
6, SPA_POD_Double(0.871),
|
6, SPA_POD_Double(0.871),
|
||||||
7, SPA_POD_String("test"),
|
7, SPA_POD_String("test"),
|
||||||
|
|
@ -1236,7 +1236,7 @@ static void test_parser2(void)
|
||||||
SPA_POD_Bool(true),
|
SPA_POD_Bool(true),
|
||||||
SPA_POD_Id(SPA_TYPE_Id),
|
SPA_POD_Id(SPA_TYPE_Id),
|
||||||
SPA_POD_Int(3),
|
SPA_POD_Int(3),
|
||||||
SPA_POD_Long(4),
|
SPA_POD_Long(4LL),
|
||||||
SPA_POD_Float(0.453f),
|
SPA_POD_Float(0.453f),
|
||||||
SPA_POD_Double(0.871),
|
SPA_POD_Double(0.871),
|
||||||
SPA_POD_String("test"),
|
SPA_POD_String("test"),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue