libmisc/rtems-fdt: Fix missing error string

- Coverity CID 1515930 issue

Updates #4729
This commit is contained in:
Chris Johns
2022-10-11 12:50:30 +11:00
parent 40eb58fd5e
commit fe104e399a
+2 -1
View File
@@ -962,7 +962,8 @@ rtems_fdt_strerror (int errval)
"no memory",
"file not found",
"DTB read fail",
"blob has references"
"blob has references",
"bad length"
};
if (errval > -RTEMS_FDT_ERR_RTEMS_MIN)
return fdt_strerror (errval);