mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-05 22:24:47 +08:00
Made error message more verbose
This commit is contained in:
@@ -174,6 +174,9 @@ eeprom_ioctl(unsigned operation)
|
|||||||
static void
|
static void
|
||||||
eeprom_save(const char *name)
|
eeprom_save(const char *name)
|
||||||
{
|
{
|
||||||
|
if (!name)
|
||||||
|
err(1, "missing argument for device name, try '/eeprom'");
|
||||||
|
|
||||||
int fd = open(name, O_WRONLY | O_CREAT | O_EXCL);
|
int fd = open(name, O_WRONLY | O_CREAT | O_EXCL);
|
||||||
|
|
||||||
if (fd < 0)
|
if (fd < 0)
|
||||||
@@ -193,6 +196,9 @@ eeprom_save(const char *name)
|
|||||||
static void
|
static void
|
||||||
eeprom_load(const char *name)
|
eeprom_load(const char *name)
|
||||||
{
|
{
|
||||||
|
if (!name)
|
||||||
|
err(1, "missing argument for device name, try '/eeprom'");
|
||||||
|
|
||||||
int fd = open(name, O_RDONLY);
|
int fd = open(name, O_RDONLY);
|
||||||
|
|
||||||
if (fd < 0)
|
if (fd < 0)
|
||||||
|
|||||||
Reference in New Issue
Block a user