Skip to content

Commit

Permalink
Coccinelle: memdup: Fix typo in warning messages
Browse files Browse the repository at this point in the history
Replace 'kmemdep' with 'kmemdup' in warning messages.

Signed-off-by: Dafna Hirschfeld <[email protected]>
Acked-by: Julia Lawall <[email protected]>
Acked-by: Nicolas Palix <[email protected]>
Signed-off-by: Masahiro Yamada <[email protected]>
  • Loading branch information
Dafna Hirschfeld authored and masahir0y committed Mar 2, 2018
1 parent 1a90ce3 commit a11761c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/coccinelle/api/memdup.cocci
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ statement S;
p << r.p;
@@
coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdep")
coccilib.org.print_todo(p[0], "WARNING opportunity for kmemdup")
@script:python depends on report@
p << r.p;
@@
coccilib.report.print_report(p[0], "WARNING opportunity for kmemdep")
coccilib.report.print_report(p[0], "WARNING opportunity for kmemdup")

0 comments on commit a11761c

Please sign in to comment.