Fix errta
authorSung-jae Park <nicesj.park@samsung.com>
Tue, 25 Nov 2014 12:07:02 +0000 (21:07 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Tue, 25 Nov 2014 12:07:02 +0000 (21:07 +0900)
[model] Redwood,Kiran,B3(Wearable)
[binary_type] AP
[customer] Docomo/Orange/ATT/Open
[issue#] N/A
[problem]
[cause]
[solution]
[team] HomeTF
[request]
[horizontal_expansion]

Change-Id: I9cfc767475d0528be9d5b847c3f779e4053e501d

src/package.c
src/slave_life.c

index ba4b0c2..7effcdf 100644 (file)
@@ -1107,7 +1107,7 @@ static inline int assign_new_slave(const char *slave_pkgname, struct pkg_info *i
        return DBOX_STATUS_ERROR_FAULT;
     }
 
-    DbgPrint("New slave[%s] is assigned for %s (using %s / abi[%s])\n", s_name, info->dbox_id, slave_pkgname, info->abi);
+    DbgPrint("New slave[%s] is assigned for %s (using %s / abi[%s] / accel[%s])\n", s_name, info->dbox_id, slave_pkgname, info->abi, info->hw_acceleration);
     info->slave = slave_create(s_name, info->secured, info->abi, slave_pkgname, info->network, info->hw_acceleration);
 
     DbgFree(s_name);
index 15efc54..04391a7 100644 (file)
@@ -221,7 +221,7 @@ static inline struct slave_node *create_slave_node(const char *name, int is_secu
        return NULL;
     }
 
-    if (slave->hw_acceleration) {
+    if (hw_acceleration) {
        slave->hw_acceleration = strdup(hw_acceleration);
        if (!slave->hw_acceleration) {
            ErrPrint("Heap: %s\n", strerror(errno));