From 510d3becc7592405f02e90f5aa43740c53f7deeb Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Wed, 18 Oct 2023 19:54:37 +0100 Subject: wasmtime-wasi-http.c: Fix indentation Signed-off-by: Andrew Clayton --- wasmtime-wasi-http.c | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/wasmtime-wasi-http.c b/wasmtime-wasi-http.c index e314816..e1b6693 100644 --- a/wasmtime-wasi-http.c +++ b/wasmtime-wasi-http.c @@ -124,7 +124,7 @@ static void set_function_imports(wasmtime_linker_t *linker) SET_VALS(params, WASM_I32, WASM_I64, WASM_I32), }, { SET_FUNC(subscribe_to_input_stream, - "subscribe-to-input-stream", "streams2"), + "subscribe-to-input-stream", "streams2"), SET_VALS(params, WASM_I32), SET_VALS(results, WASM_I32), }, { @@ -137,7 +137,7 @@ static void set_function_imports(wasmtime_linker_t *linker) WASM_I32, WASM_I32, WASM_I32, WASM_I32), }, { SET_FUNC(subscribe_to_output_stream, - "subscribe-to-output-stream", "streams2"), + "subscribe-to-output-stream", "streams2"), SET_VALS(params, WASM_I32), SET_VALS(results, WASM_I32), }, { @@ -155,32 +155,32 @@ static void set_function_imports(wasmtime_linker_t *linker) SET_VALS(params, WASM_I32, WASM_I32), }, { SET_FUNC(finish_incoming_stream, - "finish-incoming-stream", "types2"), + "finish-incoming-stream", "types2"), SET_VALS(params, WASM_I32, WASM_I32), }, { SET_FUNC(finish_outgoing_stream, - "finish-outgoing-stream", "types2"), + "finish-outgoing-stream", "types2"), SET_VALS(params, WASM_I32, WASM_I32, WASM_I32), }, { SET_FUNC(incoming_request_method, - "incoming-request-method", "types2"), + "incoming-request-method", "types2"), SET_VALS(params, WASM_I32, WASM_I32), }, { SET_FUNC(incoming_request_path_with_query, - "incoming-request-path-with-query", "types2"), + "incoming-request-path-with-query", "types2"), SET_VALS(params, WASM_I32, WASM_I32), }, { SET_FUNC(incoming_request_headers, - "incoming-request-headers", "types2"), + "incoming-request-headers", "types2"), SET_VALS(params, WASM_I32), SET_VALS(results, WASM_I32), }, { SET_FUNC(incoming_request_consume, - "incoming-request-consume", "types2"), + "incoming-request-consume", "types2"), SET_VALS(params, WASM_I32, WASM_I32), }, { SET_FUNC(new_outgoing_request, "new-outgoing-request", - "types2"), + "types2"), SET_VALS(params, WASM_I32, WASM_I32, WASM_I32, WASM_I32, WASM_I32, WASM_I32, WASM_I32, WASM_I32, @@ -189,7 +189,7 @@ static void set_function_imports(wasmtime_linker_t *linker) SET_VALS(results, WASM_I32), }, { SET_FUNC(outgoing_request_write, - "outgoing-request-write", "types2"), + "outgoing-request-write", "types2"), SET_VALS(params, WASM_I32, WASM_I32), }, { SET_FUNC(set_response_outparam, @@ -200,35 +200,35 @@ static void set_function_imports(wasmtime_linker_t *linker) SET_VALS(results, WASM_I32), }, { SET_FUNC(incoming_response_status, - "incoming-response-status", "types2"), + "incoming-response-status", "types2"), SET_VALS(params, WASM_I32), SET_VALS(results, WASM_I32), }, { SET_FUNC(incoming_response_headers, - "incoming-response-headers", "types2"), + "incoming-response-headers", "types2"), SET_VALS(params, WASM_I32), SET_VALS(results, WASM_I32), }, { SET_FUNC(incoming_response_consume, - "incoming-response-consume", "types2"), + "incoming-response-consume", "types2"), SET_VALS(params, WASM_I32, WASM_I32), }, { SET_FUNC(new_outgoing_response, - "new-outgoing-response", "types2"), + "new-outgoing-response", "types2"), SET_VALS(params, WASM_I32, WASM_I32), SET_VALS(results, WASM_I32), }, { SET_FUNC(outgoing_response_write, - "outgoing-response-write", "types2"), + "outgoing-response-write", "types2"), SET_VALS(params, WASM_I32, WASM_I32), }, { SET_FUNC(future_incoming_response-get, - "future-incoming-response-get", "types2"), + "future-incoming-response-get", "types2"), SET_VALS(params, WASM_I32, WASM_I32), }, { SET_FUNC(listen_to_fauture_incoming_response, - "listen-to-future-incoming-response", - "types2"), + "listen-to-future-incoming-response", + "types2"), SET_VALS(params, WASM_I32), SET_VALS(results, WASM_I32), }, -- cgit