Systemd/coccinelle/const-strlen.cocci

11 lines
86 B
Plaintext

@@
constant s;
@@
- sizeof(s)-1
+ STRLEN(s)
@@
constant s;
@@
- strlen(s)
+ STRLEN(s)