about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/vtable.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vtable.rs b/src/vtable.rs
index 5788aabaadc..7ee34b23e46 100644
--- a/src/vtable.rs
+++ b/src/vtable.rs
@@ -74,7 +74,7 @@ pub(crate) fn get_vtable<'tcx>(
     } else {
         let vtable_alloc_id = match fx.tcx.vtable_allocation(ty, trait_ref) {
             Ok(alloc) => alloc,
-            Err(_) => fx.tcx.sess().fatal("allocation of constant vtable failed"),
+            Err(_) => fx.tcx.sess.fatal("allocation of constant vtable failed"),
         };
         let vtable_allocation = fx.tcx.global_alloc(vtable_alloc_id).unwrap_memory();
         let vtable_ptr = pointer_for_allocation(fx, vtable_allocation);