1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-29 21:47:05 +03:00
systemd-stable/coccinelle/const-strlen.cocci

11 lines
86 B
Plaintext
Raw Normal View History

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