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> {
524
524
epfd_value : i32 ,
525
525
weak_epfd : WeakFileDescriptionRef ,
526
526
dest : & MPlaceTy < ' tcx > ,
527
- event : & MPlaceTy < ' tcx > ,
527
+ events : & MPlaceTy < ' tcx > ,
528
528
) -> InterpResult < ' tcx > {
529
529
let this = self . eval_context_mut ( ) ;
530
530
@@ -539,7 +539,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
539
539
let ready_list = epoll_file_description. get_ready_list ( ) ;
540
540
let mut ready_list = ready_list. borrow_mut ( ) ;
541
541
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 ) ?;
543
543
544
544
while let Some ( des) = array_iter. next ( this) ? {
545
545
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