ipc: Make _sync struct have the right indentation

This commit is contained in:
Jakob Bornecrantz 2022-11-06 03:17:03 +00:00 committed by Jakob Bornecrantz
parent 86a6b4b3e3
commit 26c4771bfb

View file

@ -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))