Skip to content

Commit 3cbb637

Browse files
committed
Update cython expectations from the previous patch.
1 parent 785e066 commit 3cbb637

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

tests/expectations/va_list_tag.pyx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,18 @@ cdef extern from *:
88

99
ctypedef int32_t (*VaListFnPtr)(int32_t count, ...);
1010

11-
ctypedef int32_t (*VaListFnPtr2)(int32_t count);
11+
ctypedef int32_t (*VaListFnPtr2)(int32_t count, ...);
1212

1313
cdef struct Interface_______i32_______i32_______va_list:
1414
int32_t (*fn1)(int32_t count, ...);
1515

16-
cdef struct Interface_______i32_______i32:
17-
int32_t (*fn1)(int32_t count);
18-
1916
int32_t va_list_test(int32_t count, ...);
2017

2118
int32_t va_list_test2(int32_t count, ...);
2219

2320
void va_list_fn_ptrs(int32_t (*fn1)(int32_t count, ...),
24-
int32_t (*fn2)(int32_t count),
21+
int32_t (*fn2)(int32_t count, ...),
2522
VaListFnPtr fn3,
2623
VaListFnPtr2 fn4,
2724
Interface_______i32_______i32_______va_list fn5,
28-
Interface_______i32_______i32 fn6);
25+
Interface_______i32_______i32_______va_list fn6);

0 commit comments

Comments
 (0)