From: Kichan Kwon Date: Wed, 4 Nov 2020 06:39:52 +0000 (+0900) Subject: Fix invalid parenthesis X-Git-Tag: accepted/tizen/unified/20201109.123541^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F81%2F246781%2F1;p=platform%2Fcore%2Fsystem%2Ftota-ua.git Fix invalid parenthesis Change-Id: I8cf55406c5f81bc4816d065ffdc0827dee84cc42 Signed-off-by: Kichan Kwon --- diff --git a/dmverity/verity_handler.c b/dmverity/verity_handler.c index 4fa2cb1..2113616 100755 --- a/dmverity/verity_handler.c +++ b/dmverity/verity_handler.c @@ -208,7 +208,7 @@ int main(int argc, char **argv) LOG("pthread_join(th_id_hash) succeeded \n"); error = pthread_cancel(th_id_progress); - if (error != 0) { + if (error != 0) LOG("progress thread is already terminated \n"); error = pthread_join(th_id_progress, NULL);