Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/structures/packet/packet_messages.h

    r21580dd raadf01e  
    6969/** Returns the protocol service message parameter.
    7070 */
    71 #define ARP_GET_PROTO( call )           ( services_t ) IPC_GET_ARG2( * call )
     71#define ARP_GET_PROTO(call)             (services_t) IPC_GET_ARG2(*call)
    7272
    7373/** Returns the packet identifier message parameter.
    7474 */
    75 #define IPC_GET_ID( call )                      ( packet_id_t ) IPC_GET_ARG1( * call )
     75#define IPC_GET_ID(call)                        (packet_id_t) IPC_GET_ARG1(*call)
    7676
    7777/** Returns the maximal content length message parameter.
    7878 */
    79 #define IPC_GET_CONTENT( call )         ( size_t ) IPC_GET_ARG1( * call )
     79#define IPC_GET_CONTENT(call)           (size_t) IPC_GET_ARG1(*call)
    8080
    8181/** Returns the maximal address length message parameter.
    8282 */
    83 #define IPC_GET_ADDR_LEN( call )        ( size_t ) IPC_GET_ARG2( * call )
     83#define IPC_GET_ADDR_LEN(call)  (size_t) IPC_GET_ARG2(*call)
    8484
    8585/** Returns the maximal prefix length message parameter.
    8686 */
    87 #define IPC_GET_PREFIX( call )          ( size_t ) IPC_GET_ARG3( * call )
     87#define IPC_GET_PREFIX(call)            (size_t) IPC_GET_ARG3(*call)
    8888
    8989/** Returns the maximal suffix length message parameter.
    9090 */
    91 #define IPC_GET_SUFFIX( call )          ( size_t ) IPC_GET_ARG4( * call )
     91#define IPC_GET_SUFFIX(call)            (size_t) IPC_GET_ARG4(*call)
    9292
    9393#endif
Note: See TracChangeset for help on using the changeset viewer.