Changeset 14394141 in mainline


Ignore:
Timestamp:
2025-04-20T13:45:48Z (7 weeks ago)
Author:
Miroslav Cimerman <mc@…>
Children:
58c43d4
Parents:
50603405
Message:

hr: util.c: style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/bd/hr/util.c

    r50603405 r14394141  
    249249                rc = block_init(svc_id);
    250250                if (rc != EOK) {
    251                         HR_DEBUG("%s(): initing (%" PRIun ") failed, aborting\n",
    252                             __func__, svc_id);
     251                        HR_DEBUG("%s(): initing (%" PRIun ") failed, "
     252                            "aborting\n", __func__, svc_id);
    253253                        goto error;
    254254                }
     
    300300        for (i = 0; i < vol->extent_no; i++) {
    301301                if (vol->extents[i].svc_id != 0) {
    302                         HR_DEBUG("hr_fini_devs(): block_fini() on (%" PRIun ")\n",
    303                             vol->extents[i].svc_id);
     302                        HR_DEBUG("hr_fini_devs(): block_fini() on "
     303                            "(%" PRIun ")\n", vol->extents[i].svc_id);
    304304                        block_fini(vol->extents[i].svc_id);
    305305                }
     
    308308        for (i = 0; i < vol->hotspare_no; i++) {
    309309                if (vol->hotspares[i].svc_id != 0) {
    310                         HR_DEBUG("hr_fini_devs(): block_fini() on (%" PRIun ")\n",
     310                        HR_DEBUG("hr_fini_devs(): block_fini() on "
     311                            "(%" PRIun ")\n",
    311312                            vol->hotspares[i].svc_id);
    312313                        block_fini(vol->hotspares[i].svc_id);
     
    627628        while (!list_empty(list)) {
    628629                dev_id = list_pop(list, struct dev_list_member, link);
     630
    629631                free_dev_list_member(dev_id);
    630632        }
Note: See TracChangeset for help on using the changeset viewer.