[bug] [custom op] Add back _t suffix for size_t type (#6619)
authorVladimir Plazun/AI Tools Lab /SRR/Engineer/삼성전자 <v.plazun@samsung.com>
Fri, 16 Aug 2019 00:35:10 +0000 (03:35 +0300)
committer오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Fri, 16 Aug 2019 00:35:10 +0000 (09:35 +0900)
Was previously removed by error

Signed-off-by: Vladimir Plazun <v.plazun@samsung.com>
runtimes/include/nnfw_dev.h

index 5e46adc..b4e62fa 100644 (file)
@@ -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;