Ignore:
File:
1 edited

Legend:

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

    rdd8ab1c r9c2c7d2  
    3737#include <stdbool.h>
    3838#include <errno.h>
    39 #include <str_error.h>
    4039#include <fibril_synch.h>
    4140#include <io/log.h>
     
    272271        if (rc != EOK) {
    273272                log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering callback "
    274                     "for partition discovery: %s.", str_error(rc));
     273                    "for partition discovery (%d).", rc);
    275274                return rc;
    276275        }
     
    329328        rc = volsrv_part_empty(part->svc_id);
    330329        if (rc != EOK) {
    331                 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_empty_part() - failed %s",
    332                     str_error(rc));
     330                log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_empty_part() - failed %d",
     331                    rc);
    333332                return rc;
    334333        }
     
    349348        rc = volsrv_part_mkfs(part->svc_id, fstype, label);
    350349        if (rc != EOK) {
    351                 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_mkfs_part() - failed %s",
    352                     str_error(rc));
     350                log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_part_mkfs_part() - failed %d",
     351                    rc);
    353352                fibril_mutex_unlock(&vol_parts_lock);
    354353                return rc;
Note: See TracChangeset for help on using the changeset viewer.