Changeset ba65caf5 in mainline
- Timestamp:
- 2025-07-08T14:43:40Z (2 weeks ago)
- Children:
- c5c367a
- Parents:
- f7169a6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/hr/hr.c
rf7169a6 rba65caf5 333 333 goto fail; 334 334 335 for (i = 0; i < vol_cnt; i++) 336 (void)hr_remove_volume(vol_svcs[i]); 335 for (i = 0; i < vol_cnt; i++) { 336 errno_t rc2 = hr_remove_volume(vol_svcs[i]); 337 if (rc2 == EBUSY) 338 rc = EBUSY; 339 } 337 340 338 341 fail:
Note:
See TracChangeset
for help on using the changeset viewer.