Fix invalid parentheses 05/273305/1 accepted/tizen/6.5/unified/20220404.141021 submit/tizen_6.5/20220404.031803
authorTae-Young Chung <ty83.chung@samsung.com>
Mon, 4 Apr 2022 02:33:54 +0000 (11:33 +0900)
committerTae-Young Chung <ty83.chung@samsung.com>
Mon, 4 Apr 2022 02:33:59 +0000 (11:33 +0900)
[Version] 0.0.6-0
[Issue type] bug fix

Change-Id: Iff7cc2ea8cdeee1ab6d3aacaa5fe645a6b27dcff
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
packaging/inference-engine-mlapi.spec
src/inference_engine_mlapi.cpp

index b2c72fd..316f9f9 100644 (file)
@@ -1,6 +1,6 @@
 Name:       inference-engine-mlapi
 Summary:    ML Single API backend of NNStreamer for MediaVision
-Version:    0.0.5
+Version:    0.0.6
 Release:    0
 Group:      Multimedia/Libraries
 License:    Apache-2.0
index 2473a8c..0e92655 100644 (file)
@@ -92,7 +92,7 @@ namespace MLAPIImpl
                        INFERENCE_BACKEND_OPENCV == type) &&
                        INFERENCE_BACKEND_NPU_SNPE != type) {
 #else
-                       INFERENCE_BACKEND_OPENCV == type) {
+                       INFERENCE_BACKEND_OPENCV == type)) {
 #endif
                        LOGE("Invalid backend type.(%d)", type);
                        return INFERENCE_ENGINE_ERROR_NOT_SUPPORTED;