Skip to content
Snippets Groups Projects
Commit 399c551d authored by Michael Tüxen's avatar Michael Tüxen
Browse files

Don't use arrays of length 0.

parent f987c966
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ struct wire_packets_start {
struct wire_packets_done {
__be32 result; /* STATUS_OK or TCPEST_ERR (network order) */
__be32 num_events; /* total events executed (network order) */
char error_message[0]; /* '\0'-teriminated error message, or empty */
char error_message[]; /* '\0'-teriminated error message, or empty */
};
#endif /* __WIRE_PROTOCOL_H__ */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment