File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -79,9 +79,9 @@ impl fmt::Debug for VaListImpl {
79
79
all supported platforms",
80
80
issue = "44930" ) ]
81
81
struct VaListImpl {
82
- stack : * mut ( ) ,
83
- gr_top : * mut ( ) ,
84
- vr_top : * mut ( ) ,
82
+ stack : * mut c_void ,
83
+ gr_top : * mut c_void ,
84
+ vr_top : * mut c_void ,
85
85
gr_offs : i32 ,
86
86
vr_offs : i32 ,
87
87
}
@@ -98,8 +98,8 @@ struct VaListImpl {
98
98
gpr : u8 ,
99
99
fpr : u8 ,
100
100
reserved : u16 ,
101
- overflow_arg_area : * mut ( ) ,
102
- reg_save_area : * mut ( ) ,
101
+ overflow_arg_area : * mut c_void ,
102
+ reg_save_area : * mut c_void ,
103
103
}
104
104
105
105
/// x86_64 ABI implementation of a `va_list`.
@@ -113,8 +113,8 @@ struct VaListImpl {
113
113
struct VaListImpl {
114
114
gp_offset : i32 ,
115
115
fp_offset : i32 ,
116
- overflow_arg_area : * mut ( ) ,
117
- reg_save_area : * mut ( ) ,
116
+ overflow_arg_area : * mut c_void ,
117
+ reg_save_area : * mut c_void ,
118
118
}
119
119
120
120
/// A wrapper for a `va_list`
You can’t perform that action at this time.
0 commit comments