mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
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
This commit is contained in:
@ -771,15 +771,15 @@ mnsh_maybe_mourn_peer (void)
|
||||
|
||||
#define mnsh_send_open(helper, filename, flags, mode) \
|
||||
mnsh_send_message (helper->sock, MNSH_REQ_OPEN, -1, flags, mode, \
|
||||
filename, strlen (filename) + 1)
|
||||
filename, strlen (filename) + 1)
|
||||
|
||||
#define mnsh_send_unlink(helper, filename) \
|
||||
mnsh_send_message (helper->sock, MNSH_REQ_UNLINK, -1, 0, 0, \
|
||||
filename, strlen (filename) + 1)
|
||||
filename, strlen (filename) + 1)
|
||||
|
||||
#define mnsh_send_readlink(helper, filename) \
|
||||
mnsh_send_message (helper->sock, MNSH_REQ_READLINK, -1, 0, 0, \
|
||||
filename, strlen (filename) + 1)
|
||||
filename, strlen (filename) + 1)
|
||||
|
||||
/* Receive a message from the helper. Issue an assertion failure if
|
||||
the message isn't a correctly-formatted MNSH_RET_INT. Set RESULT
|
||||
|
Reference in New Issue
Block a user