Unverified Commit 38b4b216 by Stéphane Graber Committed by GitHub

Merge pull request #3720 from brauner/2021-03-23/fixes

strchrnul: fix copy-paste braino
parents 678d600f 10bf1adb
...@@ -33,7 +33,6 @@ char *strchrnul(const char *s, int c_in) ...@@ -33,7 +33,6 @@ char *strchrnul(const char *s, int c_in)
#pragma GCC diagnostic push #pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wcast-align" #pragma GCC diagnostic ignored "-Wcast-align"
for (rta = __NLMSG_RTA(h, sizeof(*ifi)); __NLMSG_RTAOK(rta, h);
c = (unsigned char)c_in; c = (unsigned char)c_in;
/* Handle the first few characters by reading one character at a time. /* Handle the first few characters by reading one character at a time.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment