diff options
author | Stu Tomlinson <nosnilmot@pidgin.im> | 2007-04-30 18:03:57 +0000 |
---|---|---|
committer | Stu Tomlinson <nosnilmot@pidgin.im> | 2007-04-30 18:03:57 +0000 |
commit | daf20a2bf9b12b44948afec7a6017bad6e89e820 (patch) | |
tree | ee2237612c850894af9596802eab24997993a6ab /pidgin | |
parent | 45676231c59018cef0f29a10f25cfa17fee05d29 (diff) | |
download | pidgin-daf20a2bf9b12b44948afec7a6017bad6e89e820.tar.gz |
Add padding to structs to fix compiler warnings
Diffstat (limited to 'pidgin')
-rw-r--r-- | pidgin/plugins/contact_priority.c | 15 | ||||
-rw-r--r-- | pidgin/plugins/gevolution/gevolution.c | 13 | ||||
-rw-r--r-- | pidgin/plugins/gtk-signals-test.c | 6 |
3 files changed, 31 insertions, 3 deletions
diff --git a/pidgin/plugins/contact_priority.c b/pidgin/plugins/contact_priority.c index f5b187777b..b53fe101a9 100644 --- a/pidgin/plugins/contact_priority.c +++ b/pidgin/plugins/contact_priority.c @@ -164,7 +164,12 @@ get_config_frame(PurplePlugin *plugin) 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 @@ static PurplePluginInfo info = &ui_info, /**< ui_info */ NULL, /**< extra_info */ NULL, /**< prefs_info */ - NULL /**< actions */ + NULL, /**< actions */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static void diff --git a/pidgin/plugins/gevolution/gevolution.c b/pidgin/plugins/gevolution/gevolution.c index 7476cd76cd..8d4ec18c4c 100644 --- a/pidgin/plugins/gevolution/gevolution.c +++ b/pidgin/plugins/gevolution/gevolution.c @@ -503,7 +503,12 @@ get_config_frame(PurplePlugin *plugin) 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 @@ static PurplePluginInfo info = &ui_info, /**< ui_info */ NULL, /**< extra_info */ NULL, + NULL, + + /* Padding */ + NULL, + NULL, + NULL, NULL }; diff --git a/pidgin/plugins/gtk-signals-test.c b/pidgin/plugins/gtk-signals-test.c index 27baffe1d4..830ef74aaf 100644 --- a/pidgin/plugins/gtk-signals-test.c +++ b/pidgin/plugins/gtk-signals-test.c @@ -173,6 +173,12 @@ static PurplePluginInfo info = NULL, /**< ui_info */ NULL, /**< extra_info */ NULL, + NULL, + + /* padding */ + NULL, + NULL, + NULL, NULL }; |