utils: ipc: proxy worker: Fix indentation in call deserialization
The indentation of the deserialization call on the proxy worker side inside the case statement was one level too shallow. Fix it. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
df58fc1f4b
commit
b0175735aa
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ public:
|
|||
|
||||
{% for method in interface_main.methods %}
|
||||
case {{cmd_enum_name}}::{{method.mojom_name|cap}}: {
|
||||
{{proxy_funcs.deserialize_call(method|method_param_inputs, '_ipcMessage.data()', '_ipcMessage.fds()', false, true)|indent(8, true)}}
|
||||
{{proxy_funcs.deserialize_call(method|method_param_inputs, '_ipcMessage.data()', '_ipcMessage.fds()', false, true)|indent(16, true)}}
|
||||
{% for param in method|method_param_outputs %}
|
||||
{{param|name}} {{param.mojom_name}};
|
||||
{% endfor %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue