Changeset dd8ab1c in mainline for uspace/srv/volsrv/part.c


Ignore:
Timestamp:
2017-12-10T21:08:11Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
68e5406
Parents:
1afa94d
Message:

More str_error() additions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/volsrv/part.c

    r1afa94d rdd8ab1c  
    329329        rc = volsrv_part_empty(part->svc_id);
    330330        if (rc != EOK) {
    331                 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_empty_part() - failed %d",
    332                     rc);
     331                log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_empty_part() - failed %s",
     332                    str_error(rc));
    333333                return rc;
    334334        }
     
    349349        rc = volsrv_part_mkfs(part->svc_id, fstype, label);
    350350        if (rc != EOK) {
    351                 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_mkfs_part() - failed %d",
    352                     rc);
     351                log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_mkfs_part() - failed %s",
     352                    str_error(rc));
    353353                fibril_mutex_unlock(&vol_parts_lock);
    354354                return rc;
Note: See TracChangeset for help on using the changeset viewer.