From 26c4771bfbe6e803e1179fe7f36bf53863f76663 Mon Sep 17 00:00:00 2001 From: Jakob Bornecrantz Date: Sun, 6 Nov 2022 03:17:03 +0000 Subject: [PATCH] ipc: Make _sync struct have the right indentation --- src/xrt/ipc/shared/proto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xrt/ipc/shared/proto.py b/src/xrt/ipc/shared/proto.py index b0a1276a3..6026ff186 100755 --- a/src/xrt/ipc/shared/proto.py +++ b/src/xrt/ipc/shared/proto.py @@ -270,7 +270,7 @@ ipc_dispatch(volatile struct ipc_client_state *ics, ipc_command_t *ipc_command) else: f.write("\t\tstruct ipc_result_reply reply = {0};\n") if call.in_handles: - f.write("\tstruct ipc_result_reply _sync = {XRT_SUCCESS};\n") + f.write("\t\tstruct ipc_result_reply _sync = {XRT_SUCCESS};\n") if call.out_handles: f.write("\t\t%s %s[MAX_HANDLES] = {0};\n" % ( call.out_handles.typename, call.out_handles.arg_name))