Updated error handling

This commit is contained in:
Uwe Seimet 2023-03-25 19:36:20 +01:00
parent 5282627766
commit 9f7f3d2204
1 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ bool GPIOBUS_Raspberry::Init(mode_e mode)
// Map peripheral region memory
void *map = mmap(NULL, 0x1000100, PROT_READ | PROT_WRITE, MAP_SHARED, fd, baseaddr);
if (map == MAP_FAILED) {
LOGERROR("Error: Unable to map memory")
LOGERROR("Error: Unable to map memory: %s", strerror(errno))
close(fd);
return false;
}
@ -985,4 +985,4 @@ uint32_t GPIOBUS_Raspberry::Acquire()
#endif // SIGNAL_CONTROL_MODE
return signals;
}
}