All CCNx faces are now available through FaceList object attribute
diff --git a/helper/ccnx-stack-helper.cc b/helper/ccnx-stack-helper.cc
index 2631be2..9699c38 100644
--- a/helper/ccnx-stack-helper.cc
+++ b/helper/ccnx-stack-helper.cc
@@ -209,7 +209,7 @@
       if (DynamicCast<LoopbackNetDevice> (device) != 0)
         continue; // don't create face for a LoopbackNetDevice
 
-      Ptr<CcnxNetDeviceFace> face = Create<CcnxNetDeviceFace> (node, device);
+      Ptr<CcnxNetDeviceFace> face = CreateObject<CcnxNetDeviceFace> (node, device);
 
       ccnx->AddFace (face);
       NS_LOG_LOGIC ("Node " << node->GetId () << ": added CcnxNetDeviceFace as face #" << *face);