[C-Api] remove warning while checking framework
authorJaeyun <jy1210.jung@samsung.com>
Mon, 19 Jul 2021 05:05:49 +0000 (14:05 +0900)
committerjaeyun-jung <39614140+jaeyun-jung@users.noreply.github.com>
Mon, 19 Jul 2021 06:35:14 +0000 (15:35 +0900)
When checking fw with model files is failed, it returns null and this will print warning message even if this works properly.
Update macro to not print this message. (requested from VD)

Signed-off-by: Jaeyun <jy1210.jung@samsung.com>
c/src/nnstreamer-capi-util.c

index af3fb60..34b63ab 100644 (file)
@@ -1302,7 +1302,8 @@ ml_get_nnfw_type_by_subplugin_name (const char *name)
   ml_nnfw_type_e nnfw_type = ML_NNFW_TYPE_ANY;
   int idx = -1;
 
-  g_return_val_if_fail (name != NULL, ML_NNFW_TYPE_ANY);
+  if (name == NULL)
+    return ML_NNFW_TYPE_ANY;
 
   idx = find_key_strv (ml_nnfw_subplugin_name, name);
   if (idx < 0) {