Cody style: Replace init with initialize.
diff --git a/ndn-cpp/encoding/binary-xml-decoder.hpp b/ndn-cpp/encoding/binary-xml-decoder.hpp
index ae04831..b95082b 100644
--- a/ndn-cpp/encoding/binary-xml-decoder.hpp
+++ b/ndn-cpp/encoding/binary-xml-decoder.hpp
@@ -23,7 +23,7 @@
    */
   BinaryXmlDecoder(const unsigned char *input, unsigned int inputLength) 
   {
-    ndn_BinaryXmlDecoder_init(this, (unsigned char *)input, inputLength);
+    ndn_BinaryXmlDecoder_initialize(this, (unsigned char *)input, inputLength);
   }
   
   /**