diff libpurple/plugins/pluginpref_example.c @ 16710:d638845509fd

Add padding to structs as necessary to silence compiler warnings
author Stu Tomlinson <stu@nosnilmot.com>
date Mon, 30 Apr 2007 17:53:27 +0000
parents f8eb3e7c4fbd
children 44b4e8bd759b
line wrap: on
line diff
--- a/libpurple/plugins/pluginpref_example.c	Mon Apr 30 17:46:14 2007 +0000
+++ b/libpurple/plugins/pluginpref_example.c	Mon Apr 30 17:53:27 2007 +0000
@@ -110,7 +110,12 @@
 static PurplePluginUiInfo prefs_info = {
 	get_plugin_pref_frame,
 	0,   /* page_num (Reserved) */
-	NULL /* frame (Reserved) */
+	NULL, /* frame (Reserved) */
+	/* Padding */
+	NULL,
+	NULL,
+	NULL,
+	NULL
 };
 
 static PurplePluginInfo info =
@@ -141,6 +146,11 @@
 	NULL,                                             /**< ui_info        */
 	NULL,                                             /**< extra_info     */
 	&prefs_info,                                      /**< prefs_info     */
+	NULL,                                             /**< actions        */
+	/* padding */
+	NULL,
+	NULL,
+	NULL,
 	NULL
 };