Remove terminating \n in syslog() calls
Per https://man7.org/linux/man-pages/man3/syslog.3.html: “The
format string need not include a terminating newline character.”
Transformed by:
sed -i 's/\(syslog.*\) "\\n"\(.*\)/\1\2/' `find -name '*.c*'` sed -i 's/\(syslog.*\) \\n\(.*\)/\1\2/' `find -name '*.c*'` sed -i 's/\(syslog.*\)\\n\(.*\)/\1\2/' `find -name '*.c*'`
and some manual work.