diff options
Diffstat (limited to 'src/include/proto.h')
| -rw-r--r-- | src/include/proto.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/proto.h b/src/include/proto.h index 7bceef9d9..c16229ef1 100644 --- a/src/include/proto.h +++ b/src/include/proto.h @@ -18,11 +18,11 @@ struct protocol { * should use __protocol. * */ -#define __protocol_start __table_start(protocol) -#define __protocol __table(protocol,01) -#define __default_protocol_start __table(protocol,02) -#define __default_protocol __table(protocol,03) -#define __protocol_end __table_end(protocol) +#define __protocol_start __table_start ( struct protocol, protocol ) +#define __protocol __table ( struct protocol, protocol, 01 ) +#define __default_protocol_start __table ( struct protocol, protocol, 02 ) +#define __default_protocol __table ( struct protocol, protocol, 03 ) +#define __protocol_end __table_end ( struct protocol, protocol ) /* * Functions in proto.c |
