Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/trace/ipcp.c

    r40fd6f0 rb7fd2a0  
    3535#include <stdio.h>
    3636#include <stdlib.h>
     37#include <str_error.h>
    3738#include <inttypes.h>
    3839#include <adt/hash_table.h>
     
    249250        sysarg_t method;
    250251        sysarg_t service;
    251         sysarg_t retval;
     252        errno_t retval;
    252253        proto_t *proto;
    253254        int cphone;
     
    264265       
    265266        if ((display_mask & DM_IPC) != 0) {
    266                 printf("Response to %d: retval=%" PRIdn ", args = (%" PRIun ", "
     267                printf("Response to %d: retval=%s, args = (%" PRIun ", "
    267268                    "%" PRIun ", %" PRIun ", %" PRIun ", %" PRIun ")\n",
    268                     hash, retval, IPC_GET_ARG1(*answer),
     269                    hash, str_error_name(retval), IPC_GET_ARG1(*answer),
    269270                    IPC_GET_ARG2(*answer), IPC_GET_ARG3(*answer),
    270271                    IPC_GET_ARG4(*answer), IPC_GET_ARG5(*answer));
     
    280281                        if (oper->rv_type != V_VOID) {
    281282                                putchar(' ');
    282                                 val_print(retval, oper->rv_type);
     283                                val_print((sysarg_t) retval, oper->rv_type);
    283284                        }
    284285                       
     
    344345}
    345346
    346 void ipcp_hangup(int phone, int rc)
     347void ipcp_hangup(int phone, errno_t rc)
    347348{
    348349        if ((display_mask & DM_SYSTEM) != 0) {
    349                 printf("Hang phone %d up -> %d\n", phone, rc);
     350                printf("Hang phone %d up -> %s\n", phone, str_error_name(rc));
    350351                ipcp_connection_clear(phone);
    351352        }
Note: See TracChangeset for help on using the changeset viewer.