aboutsummaryrefslogtreecommitdiff
path: root/stand/libofw/devicename.c
diff options
context:
space:
mode:
Diffstat (limited to 'stand/libofw/devicename.c')
-rw-r--r--stand/libofw/devicename.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stand/libofw/devicename.c b/stand/libofw/devicename.c
index 5e3a789c13db..f6419632c6bc 100644
--- a/stand/libofw/devicename.c
+++ b/stand/libofw/devicename.c
@@ -101,12 +101,12 @@ ofw_common_parsedev(struct devdesc **dev, const char *devspec, const char **path
idev = malloc(sizeof(struct ofw_devdesc));
if (idev == NULL) {
printf("ofw_parsedev: malloc failed\n");
- return ENOMEM;
+ return (ENOMEM);
};
strlcpy(idev->d_path, devspec, min(rem_path - devspec + 1,
sizeof(idev->d_path)));
*dev = &idev->dd;
if (path != NULL)
*path = rem_path;
- return 0;
+ return (0);
}