summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--device/dev_name.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/device/dev_name.c b/device/dev_name.c
index 24d0885..de9e360 100644
--- a/device/dev_name.c
+++ b/device/dev_name.c
@@ -216,14 +216,14 @@ boolean_t dev_change_indirect(iname, dname, unit)
boolean_t found = FALSE;
dev_search(dp) {
- if (!strcmp(dp->d_name,dname)) {
+ if (!strcmp(dp->d_name, dname)) {
found = TRUE;
break;
}
}
if (!found) return FALSE;
dev_indirect_search(di) {
- if (!strcmp(di->d_name,iname)) {
+ if (!strcmp(di->d_name, iname)) {
di->d_ops = dp;
di->d_unit = unit;
return TRUE;