mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 06:42:32 +08:00
Minor fix to error messages: ncp5623c
This commit is contained in:
@@ -421,7 +421,7 @@ static ssize_t ncp5623c_write(FAR struct file *filep, FAR const char *buffer,
|
|||||||
red);
|
red);
|
||||||
if (ret != OK)
|
if (ret != OK)
|
||||||
{
|
{
|
||||||
derr("ERROR: Could set red led\n");
|
derr("ERROR: Could not set red led\n");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -431,7 +431,7 @@ static ssize_t ncp5623c_write(FAR struct file *filep, FAR const char *buffer,
|
|||||||
green);
|
green);
|
||||||
if (ret != OK)
|
if (ret != OK)
|
||||||
{
|
{
|
||||||
derr("ERROR: Could set green led\n");
|
derr("ERROR: Could not set green led\n");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -441,7 +441,7 @@ static ssize_t ncp5623c_write(FAR struct file *filep, FAR const char *buffer,
|
|||||||
blue);
|
blue);
|
||||||
if (ret != OK)
|
if (ret != OK)
|
||||||
{
|
{
|
||||||
derr("ERROR: Could set blue led\n");
|
derr("ERROR: Could not set blue led\n");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user