Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/char_mouse/chardev.c

    r3c22f70 r228e490  
    7070
    7171        /* NB: The callback connection is slotted for removal */
    72         sysarg_t taskhash;
    7372        sysarg_t phonehash;
    74         if (ipc_connect_to_me(dev_phone, 0, 0, 0, &taskhash, &phonehash) != 0) {
     73        if (ipc_connect_to_me(dev_phone, 0, 0, 0, &phonehash) != 0) {
    7574                printf(NAME ": Failed to create callback from device\n");
    7675                return false;
    7776        }
    7877
    79         async_new_connection(taskhash, phonehash, 0, NULL, chardev_events);
     78        async_new_connection(phonehash, 0, NULL, chardev_events);
    8079
    8180        return 0;
Note: See TracChangeset for help on using the changeset viewer.