fix %n specifier, again. this time it was storing the wrong value.
[musl] / src / linux / klogctl.c
1 #include "syscall.h"
2
3 int klogctl (int type, char *buf, int len)
4 {
5         return syscall3(__NR_syslog, type, (long)buf, len);
6 }