Changes in uspace/srv/devman/main.c [cb819f9:7e752b2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/main.c
rcb819f9 r7e752b2 36 36 */ 37 37 38 #include <inttypes.h> 38 39 #include <assert.h> 39 40 #include <ipc/services.h> … … 417 418 node_t *dev = find_dev_node(&device_tree, handle); 418 419 if (dev == NULL) { 419 printf(NAME ": devman_forward error - no device with handle % x "420 " was found.\n", handle);420 printf(NAME ": devman_forward error - no device with handle %" PRIun 421 " was found.\n", handle); 421 422 ipc_answer_0(iid, ENOENT); 422 423 return; … … 434 435 435 436 if (driver == NULL) { 436 printf(NAME ": devman_forward error - the device is not in "437 " usable state.\n", handle);437 printf(NAME ": devman_forward error - the device is not in %" PRIun 438 " usable state.\n", handle); 438 439 ipc_answer_0(iid, ENOENT); 439 440 return; … … 449 450 printf(NAME ": devman_forward: cound not forward to driver %s ", 450 451 driver->name); 451 printf("the driver's phone is % x).\n", driver->phone);452 printf("the driver's phone is %" PRIun ").\n", driver->phone); 452 453 ipc_answer_0(iid, EINVAL); 453 454 return;
Note:
See TracChangeset
for help on using the changeset viewer.