Commit 8f109f69 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

plugin: Align cr_plugin_entry union members

Otherwise it's almost unreadable mess.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent fb068a50
...@@ -13,15 +13,15 @@ ...@@ -13,15 +13,15 @@
struct cr_plugin_entry { struct cr_plugin_entry {
union { union {
cr_plugin_fini_t *cr_fini; cr_plugin_fini_t *cr_fini;
cr_plugin_dump_unix_sk_t *cr_plugin_dump_unix_sk; cr_plugin_dump_unix_sk_t *cr_plugin_dump_unix_sk;
cr_plugin_restore_unix_sk_t *cr_plugin_restore_unix_sk; cr_plugin_restore_unix_sk_t *cr_plugin_restore_unix_sk;
cr_plugin_dump_file_t *cr_plugin_dump_file; cr_plugin_dump_file_t *cr_plugin_dump_file;
cr_plugin_restore_file_t *cr_plugin_restore_file; cr_plugin_restore_file_t *cr_plugin_restore_file;
cr_plugin_dump_ext_mount_t *cr_plugin_dump_ext_mount; cr_plugin_dump_ext_mount_t *cr_plugin_dump_ext_mount;
cr_plugin_restore_ext_mount_t *cr_plugin_restore_ext_mount; cr_plugin_restore_ext_mount_t *cr_plugin_restore_ext_mount;
cr_plugin_dump_ext_link_t *cr_plugin_dump_ext_link; cr_plugin_dump_ext_link_t *cr_plugin_dump_ext_link;
}; };
struct cr_plugin_entry *next; struct cr_plugin_entry *next;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment