Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/il/ip/ip.c

    r228e490 r8e58f94  
    430430        // binds the netif service which also initializes the device
    431431        ip_netif->phone = nil_bind_service(ip_netif->service,
    432             (sysarg_t) ip_netif->device_id, SERVICE_IP,
     432            (ipcarg_t) ip_netif->device_id, SERVICE_IP,
    433433            ip_globals.client_connection);
    434434        if (ip_netif->phone < 0) {
     
    461461       
    462462        if (ip_netif->packet_dimension.content < IP_MIN_CONTENT) {
    463                 printf("Maximum transmission unit %zu bytes is too small, at "
     463                printf("Maximum transmission unit %d bytes is too small, at "
    464464                    "least %d bytes are needed\n",
    465465                    ip_netif->packet_dimension.content, IP_MIN_CONTENT);
     
    502502        fibril_rwlock_write_unlock(&ip_globals.netifs_lock);
    503503
    504         printf("%s: Device %d changed MTU to %zu\n", NAME, device_id, mtu);
     504        printf("%s: Device %d changed MTU to %d\n", NAME, device_id, mtu);
    505505
    506506        return EOK;
     
    19021902       
    19031903        *answer_count = 0;
    1904         switch (IPC_GET_IMETHOD(*call)) {
     1904        switch (IPC_GET_METHOD(*call)) {
    19051905        case IPC_M_PHONE_HUNGUP:
    19061906                return EOK;
     
    20252025                 * result.
    20262026                 */
    2027                 if ((IPC_GET_IMETHOD(call) == IPC_M_PHONE_HUNGUP) ||
     2027                if ((IPC_GET_METHOD(call) == IPC_M_PHONE_HUNGUP) ||
    20282028                    (res == EHANGUP)) {
    20292029                        return;
Note: See TracChangeset for help on using the changeset viewer.