syslog_console.c: fix typo

This commit is contained in:
raiden00pl
2017-09-30 13:34:15 +02:00
parent 4e3c159145
commit 525a180ab5
+1 -1
View File
@@ -106,7 +106,7 @@ static ssize_t syslog_console_read(FAR struct file *filep, FAR char *buffer,
static ssize_t syslog_console_write(FAR struct file *filep,
FAR const char *buffer, size_t buflen)
{
return syslog_write(buffer, len);
return syslog_write(buffer, buflen);
}
/****************************************************************************