mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 03:29:43 +00:00
checkpatch: typo fix
remove inline #inline - it's an obvious typo. Should just be remove
inline.
Fixes: 1ef47f40dc
("checkpatch: better pattern for inline comments")
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20221108135155.1121566-1-mst@redhat.com>
This commit is contained in:
parent
60ab36907d
commit
53a3b83259
@ -1682,7 +1682,7 @@ sub process {
|
||||
|
||||
# Block comments use /* on a line of its own
|
||||
my $commentline = $rawline;
|
||||
while ($commentline =~ s@^(\+.*)/\*.*\*/@$1@o) { # remove inline #inline /*...*/
|
||||
while ($commentline =~ s@^(\+.*)/\*.*\*/@$1@o) { # remove inline /*...*/
|
||||
}
|
||||
if ($commentline =~ m@^\+.*/\*\*?+[ \t]*[^ \t]@) { # /* or /** non-blank
|
||||
WARN("Block comments use a leading /* on a separate line\n" . $herecurr);
|
||||
|
Loading…
Reference in New Issue
Block a user