Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/main.c

    r7e752b2 rcb819f9  
    3636 */
    3737
    38 #include <inttypes.h>
    3938#include <assert.h>
    4039#include <ipc/services.h>
     
    418417        node_t *dev = find_dev_node(&device_tree, handle);
    419418        if (dev == NULL) {
    420                 printf(NAME ": devman_forward error - no device with handle %" PRIun
    421                     " was found.\n", handle);
     419                printf(NAME ": devman_forward error - no device with handle %x "
     420                    "was found.\n", handle);
    422421                ipc_answer_0(iid, ENOENT);
    423422                return;
     
    435434       
    436435        if (driver == NULL) {
    437                 printf(NAME ": devman_forward error - the device is not in %" PRIun
    438                     " usable state.\n", handle);
     436                printf(NAME ": devman_forward error - the device is not in "
     437                    "usable state.\n", handle);
    439438                ipc_answer_0(iid, ENOENT);
    440439                return;
     
    450449                printf(NAME ": devman_forward: cound not forward to driver %s ",
    451450                    driver->name);
    452                 printf("the driver's phone is %" PRIun ").\n", driver->phone);
     451                printf("the driver's phone is %x).\n", driver->phone);
    453452                ipc_answer_0(iid, EINVAL);
    454453                return;
Note: See TracChangeset for help on using the changeset viewer.