changeset 16712: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 dc6903cc63b3
children 753465529b21
files pidgin/plugins/contact_priority.c pidgin/plugins/gevolution/gevolution.c pidgin/plugins/gtk-signals-test.c
diffstat 3 files changed, 31 insertions(+), 3 deletions(-) [+]
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
--- 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
 };
 
--- 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
 };