From 3b9f21c6c3f06fd5049aa43f116906417d92e11f Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Mon, 5 Jun 2023 16:54:12 +0200 Subject: cooker: use unsigned short for family with connect --- cooker/call.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cooker/call.c') diff --git a/cooker/call.c b/cooker/call.c index d44ff6f..1c29db8 100644 --- a/cooker/call.c +++ b/cooker/call.c @@ -139,6 +139,7 @@ static union value parse_field(struct gluten_ctx *g, struct arg *args, return v; switch (f->type) { + case USHORT: case INT: case LONG: case U32: @@ -245,6 +246,7 @@ bool arg_needs_temp(struct field *f, int pos, JSON_Value *jvalue, } switch (f->type) { + case USHORT: case INT: case LONG: case U32: -- cgit v1.2.3