Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/ipc/arp.h

    r774e6d1a rf87ec535  
    6969/*@{*/
    7070
    71 /** Return the protocol service message parameter.
    72  *
    73  * @param[in] call Message call structure.
    74  *
     71/** Returns the protocol service message parameter.
     72 * @param[in] call The message call structure.
    7573 */
    76 #define ARP_GET_NETIF(call) ((services_t) IPC_GET_ARG2(call))
     74#define ARP_GET_NETIF(call) \
     75        ({ \
     76                services_t service = (services_t) IPC_GET_ARG2(*call); \
     77                service; \
     78        })
    7779
    7880/*@}*/
Note: See TracChangeset for help on using the changeset viewer.