mbed Connector Interface simplification API on top of mbed-client

Fork of mbedConnectorInterfaceV3 by Doug Anson

NOTE:

This repo has been replaced with https://github.com/ARMmbed/mbedConnectorInterface. No further updates will occur with this repo. Please use the github repo instead. Thanks!

Revision:
46:62da4ce20276
Parent:
33:1d0b855df5a5
Child:
53:d2f9f94b6000
diff -r db754b994deb -r 62da4ce20276 source/Utils.cpp
--- a/source/Utils.cpp	Wed Jun 15 20:51:13 2016 +0000
+++ b/source/Utils.cpp	Wed Jun 15 22:40:29 2016 +0000
@@ -116,14 +116,14 @@
     logger.log("Endpoint: endpoint configuration completed.");
 }
 
-// build out  the endpoint and its resources
+// build out the endpoint and its resources
 void utils_build_endpoint(void *p)
 {
     if (p != NULL) {
     	// Build the Endpoint
     	logger.log("Endpoint: building endpoint and its resources...");
 		Connector::Endpoint *ep = (Connector::Endpoint *)p;
-	    ep->build_endpoint();
+	    ep->buildEndpoint();
 	}
 }