Skip to content

Commit

Permalink
kernel-doc: add missing semi-colons in option parsing
Browse files Browse the repository at this point in the history
Signed-off-by: Jani Nikula <[email protected]>
  • Loading branch information
jnikula committed Jun 10, 2016
1 parent 95b6be9 commit da9726e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/kernel-doc
Original file line number Diff line number Diff line change
Expand Up @@ -484,10 +484,10 @@ while ($ARGV[0] =~ m/^-(.*)/) {
$function_table{$function} = 1;
} elsif ($cmd eq "-export") { # only exported symbols
$output_selection = OUTPUT_EXPORTED;
%function_table = ()
%function_table = ();
} elsif ($cmd eq "-internal") { # only non-exported symbols
$output_selection = OUTPUT_INTERNAL;
%function_table = ()
%function_table = ();
} elsif ($cmd eq "-v") {
$verbose = 1;
} elsif (($cmd eq "-h") || ($cmd eq "--help")) {
Expand Down

0 comments on commit da9726e

Please sign in to comment.