Skip to content
Snippets Groups Projects
Commit 8bb97807 authored by Nikita Pettik's avatar Nikita Pettik
Browse files

port: increase padding of struct port

We are going to extend context of struct port_sql. One already inherits
struct port_tuple, which makes it size barely fits into 48 bytes of
padding of basic structure (struct port). Hence, let's increase padding
a bit to be able to add at least one more member to struct port_sql.

Needed for #2592
parent 1c3a01b6
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ struct port {
* Implementation dependent content. Needed to declare
* an abstract port instance on stack.
*/
char pad[48];
char pad[52];
};
/** Is not inlined just to be exported. */
......
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