File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -524,7 +524,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
524524 epfd_value : i32 ,
525525 weak_epfd : WeakFileDescriptionRef ,
526526 dest : & MPlaceTy < ' tcx > ,
527- event : & MPlaceTy < ' tcx > ,
527+ events : & MPlaceTy < ' tcx > ,
528528 ) -> InterpResult < ' tcx > {
529529 let this = self . eval_context_mut ( ) ;
530530
@@ -539,7 +539,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
539539 let ready_list = epoll_file_description. get_ready_list ( ) ;
540540 let mut ready_list = ready_list. borrow_mut ( ) ;
541541 let mut num_of_events: i32 = 0 ;
542- let mut array_iter = this. project_array_fields ( event ) ?;
542+ let mut array_iter = this. project_array_fields ( events ) ?;
543543
544544 while let Some ( des) = array_iter. next ( this) ? {
545545 if let Some ( epoll_event_instance) = ready_list_next ( this, & mut ready_list) {
You can’t perform that action at this time.
0 commit comments