# HG changeset patch # User Stu Tomlinson # Date 1177956237 0 # Node ID 89bbced1589f0b5e4f623de37f88709e779b9d31 # Parent dc6903cc63b39c1b5cf72602ef89339b2ed3296c Add padding to structs to fix compiler warnings diff -r dc6903cc63b3 -r 89bbced1589f pidgin/plugins/contact_priority.c --- a/pidgin/plugins/contact_priority.c Mon Apr 30 17:57:50 2007 +0000 +++ b/pidgin/plugins/contact_priority.c Mon Apr 30 18:03:57 2007 +0000 @@ -164,7 +164,12 @@ static PidginPluginUiInfo ui_info = { get_config_frame, - 0 /* page_num (Reserved) */ + 0, /* page_num (Reserved) */ + /* Padding */ + NULL, + NULL, + NULL, + NULL }; static PurplePluginInfo info = @@ -194,7 +199,13 @@ &ui_info, /**< ui_info */ NULL, /**< extra_info */ NULL, /**< prefs_info */ - NULL /**< actions */ + NULL, /**< actions */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static void diff -r dc6903cc63b3 -r 89bbced1589f pidgin/plugins/gevolution/gevolution.c --- a/pidgin/plugins/gevolution/gevolution.c Mon Apr 30 17:57:50 2007 +0000 +++ b/pidgin/plugins/gevolution/gevolution.c Mon Apr 30 18:03:57 2007 +0000 @@ -503,7 +503,12 @@ static PidginPluginUiInfo ui_info = { get_config_frame, /**< get_config_frame */ - 0 /**< page_num */ + 0, /**< page_num */ + /* Padding */ + NULL, + NULL, + NULL, + NULL }; static PurplePluginInfo info = @@ -534,6 +539,12 @@ &ui_info, /**< ui_info */ NULL, /**< extra_info */ NULL, + NULL, + + /* Padding */ + NULL, + NULL, + NULL, NULL }; diff -r dc6903cc63b3 -r 89bbced1589f pidgin/plugins/gtk-signals-test.c --- a/pidgin/plugins/gtk-signals-test.c Mon Apr 30 17:57:50 2007 +0000 +++ b/pidgin/plugins/gtk-signals-test.c Mon Apr 30 18:03:57 2007 +0000 @@ -173,6 +173,12 @@ NULL, /**< ui_info */ NULL, /**< extra_info */ NULL, + NULL, + + /* padding */ + NULL, + NULL, + NULL, NULL };