Add defaultbranch
[src/app-framework-main.git] / src / afm-run.c
index 152b57f..c5d1552 100644 (file)
@@ -27,7 +27,7 @@
 #include <limits.h>
 #include <string.h>
 
-#include <json.h>
+#include <json-c/json.h>
 
 #include "verbose.h"
 #include "utils-dir.h"
@@ -388,18 +388,18 @@ static int fill_launch_desc(struct json_object *appli,
                return -1;
        }
 
-       /* plugins */
+       /* bindings */
        {
                /* TODO */
                static const char *null = NULL;
-               desc->plugins = &null;
+               desc->bindings = &null;
        }
 
        /* finaly */
        desc->home = homeappdir;
        desc->mode = mode;
        return 0;
-};
+}
 
 /**************** report state of runner *********************/