From 24b21115f522cd0fbe55986cd914a593576294ef Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Thu, 27 May 2021 15:18:49 -0400 Subject: gdb: fix tab after space indentation issues I spotted some indentation issues where we had some spaces followed by tabs at beginning of line, that I wanted to fix. So while at it, I did a quick grep to find and fix all I could find. gdb/ChangeLog: * Fix tab after space indentation issues throughout. Change-Id: I1acb414dd9c593b474ae2b8667496584df4316fd --- gdb/infcmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/infcmd.c') diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 3cb05e5..38947ca 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1472,7 +1472,7 @@ get_return_value (struct value *function, struct type *value_type) calls are made async, this will likely be made the norm. */ switch (gdbarch_return_value (gdbarch, function, value_type, - NULL, NULL, NULL)) + NULL, NULL, NULL)) { case RETURN_VALUE_REGISTER_CONVENTION: case RETURN_VALUE_ABI_RETURNS_ADDRESS: -- cgit v1.1