Skip to content

Commit d737592

Browse files
n-salimbpangWR
authored andcommitted
Fixed usage of isize
1 parent e9a2eb5 commit d737592

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vxworks/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ pub type SD_ID = ::OBJ_HANDLE;
104104
pub type CONDVAR_ID = ::OBJ_HANDLE;
105105

106106
// From vxTypes.h
107-
pub type _Vx_usr_arg_t = ::isize;
108-
pub type _Vx_exit_code_t = ::isize;
107+
pub type _Vx_usr_arg_t = isize;
108+
pub type _Vx_exit_code_t = isize;
109109
pub type _Vx_ticks_t = ::c_uint;
110110
pub type _Vx_ticks64_t = ::c_ulonglong;
111111

0 commit comments

Comments
 (0)