Concatenate result directly from GetBindingDirPath
authorRomain Forlot <romain.forlot@iot.bzh>
Sat, 9 Sep 2017 15:39:57 +0000 (17:39 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Sat, 9 Sep 2017 15:39:57 +0000 (17:39 +0200)
Return non const char pointer.

Change-Id: I975b18f72d26c1a2749ca54e4f096271497047dd
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
filescan-utils.c
filescan-utils.h

index 2ac67fd..a36969b 100644 (file)
@@ -123,7 +123,7 @@ PUBLIC const char *GetBinderName() {
     return binderName;
 }
 
-PUBLIC const char *GetBindingDirPath()
+PUBLIC char *GetBindingDirPath()
 {
     // A file description should not be greater than 999.999.999
     char fd_link[CONTROL_MAXPATH_LEN];
index 68df0fc..e17867e 100644 (file)
@@ -47,7 +47,7 @@ typedef enum {
 PUBLIC const char *GetMidleName(const char*name);
 PUBLIC const char *GetBinderName();
 PUBLIC json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode, const char *pre, const char *ext);
-PUBLIC const char *GetBindingDirPath();
+PUBLIC char *GetBindingDirPath();
 
 
 #ifdef __cplusplus