Mercurial > pidgin.yaz
diff pidgin/plugins/contact_priority.c @ 16721:89bbced1589f
Add padding to structs to fix compiler warnings
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Mon, 30 Apr 2007 18:03:57 +0000 |
| parents | 4999bbc52881 |
| children | 44b4e8bd759b |
line wrap: on
line diff
--- 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
