From 816369fb61655fd886bd21defda9ae9506748eb5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Vladimir=20Plazun/AI=20Tools=20Lab=20/SRR/Engineer/?= =?utf8?q?=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Fri, 16 Aug 2019 03:35:10 +0300 Subject: [PATCH] [bug] [custom op] Add back _t suffix for size_t type (#6619) Was previously removed by error Signed-off-by: Vladimir Plazun --- runtimes/include/nnfw_dev.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtimes/include/nnfw_dev.h b/runtimes/include/nnfw_dev.h index 5e46adc..b4e62fa 100644 --- a/runtimes/include/nnfw_dev.h +++ b/runtimes/include/nnfw_dev.h @@ -35,10 +35,10 @@ typedef struct */ typedef struct { - size ninputs; + size_t ninputs; nnfw_operand *inputs; - size noutputs; + size_t noutputs; nnfw_operand *outputs; } nnfw_custom_kernel_params; -- 2.7.4