From: 김수진/동작제어Lab(SR)/Engineer/삼성전자 Date: Tue, 24 Apr 2018 10:45:16 +0000 (+0900) Subject: Remove double semicolon in Memory code (#881) X-Git-Tag: 0.1~143 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=77384dda3c650b4ccc410a9a7e7e5814b1e9703c;p=platform%2Fcore%2Fml%2Fnnfw.git Remove double semicolon in Memory code (#881) This commit removes double semicolon in Memory code. Signed-off-by: sjsujinkim --- diff --git a/src/runtime/ref/nn/runtime/Memory.cpp b/src/runtime/ref/nn/runtime/Memory.cpp index 82827e0..61d8e12 100644 --- a/src/runtime/ref/nn/runtime/Memory.cpp +++ b/src/runtime/ref/nn/runtime/Memory.cpp @@ -30,7 +30,7 @@ namespace android { namespace nn { int Memory::create(uint32_t size) { - int fd = ashmem_create_region("__unused_name", size);; + int fd = ashmem_create_region("__unused_name", size); int prot = PROT_WRITE | PROT_READ; size_t offset = 0; void* data = mmap(0, size, prot, MAP_SHARED, fd, offset);