Changes in uspace/srv/volsrv/part.c [dd8ab1c:9c2c7d2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/volsrv/part.c
rdd8ab1c r9c2c7d2 37 37 #include <stdbool.h> 38 38 #include <errno.h> 39 #include <str_error.h>40 39 #include <fibril_synch.h> 41 40 #include <io/log.h> … … 272 271 if (rc != EOK) { 273 272 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering callback " 274 "for partition discovery : %s.", str_error(rc));273 "for partition discovery (%d).", rc); 275 274 return rc; 276 275 } … … 329 328 rc = volsrv_part_empty(part->svc_id); 330 329 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); 333 332 return rc; 334 333 } … … 349 348 rc = volsrv_part_mkfs(part->svc_id, fstype, label); 350 349 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); 353 352 fibril_mutex_unlock(&vol_parts_lock); 354 353 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.