changeset 1639:a83a065e6518

stereo_plugin: C99 initialisers
author William Pitcock <nenolod@atheme.org>
date Fri, 07 Sep 2007 05:46:25 -0500
parents e85bb4872787
children a5045f10f80c
files src/stereo_plugin/stereo.c
diffstat 1 files changed, 5 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/stereo_plugin/stereo.c	Fri Sep 07 05:44:22 2007 -0500
+++ b/src/stereo_plugin/stereo.c	Fri Sep 07 05:46:25 2007 -0500
@@ -16,14 +16,11 @@
 
 EffectPlugin stereo_ep =
 {
-	NULL,
-	NULL,
-	"Extra Stereo Plugin", /* Description */
-	init,
-	NULL,
-	about,
-	configure,
-	mod_samples
+	.description = "Extra Stereo Plugin", /* Description */
+	.init = init,
+	.about = about,
+	.configure = configure,
+	.mod_samples = mod_samples
 };
 
 static const char *about_text = N_("Extra Stereo Plugin\n\n"