[Fix] fix the position of goto label
authorDongju Chae <dongju.chae@samsung.com>
Thu, 22 Jul 2021 04:07:14 +0000 (13:07 +0900)
committer채동주/On-Device Lab(SR)/Staff Engineer/삼성전자 <dongju.chae@samsung.com>
Thu, 22 Jul 2021 06:35:16 +0000 (15:35 +0900)
This patch fixes the position of goto label.
It should be inside ifndef block.

Signed-off-by: Dongju Chae <dongju.chae@samsung.com>
tests/apptests/tvn_triv2_profile_example.cc

index cbce310512beff5e2050153a9675a8a75e1b8a65..3cf9f9ce918f85f277fc72fad095d18f4aa25933 100644 (file)
@@ -152,9 +152,10 @@ main (int argc, char **argv) {
 err:
   cerr << "[APPTEST] " << __progname << ": FAILED (" << status << ")\n";
   return status;
-#endif
 
 skip:
+#endif
+
   cerr << "[APPTEST] " << __progname << ": SKIPPED\n";
   return 0;
 }