diff --git a/MagickCore/cache-view.c b/MagickCore/cache-view.c
index 1a81094..c2062b6 100644
--- a/MagickCore/cache-view.c
+++ b/MagickCore/cache-view.c
@@ -850,8 +850,8 @@
   assert(cache_view != (CacheView *) NULL);
   assert(cache_view->signature == MagickSignature);
   assert(id < (int) cache_view->number_threads);
-  pixels=QueueAuthenticNexus(cache_view->image,x,y,columns,rows,MagickFalse,
-    cache_view->nexus_info[id],exception);
+  pixels=QueueAuthenticPixelCacheNexus(cache_view->image,x,y,columns,rows,
+    MagickFalse,cache_view->nexus_info[id],exception);
   return(pixels);
 }