Reorder module info fields in the beep module
authorMikael Berthe <mikael@lilotux.net>
Sat, 27 Mar 2010 11:08:19 +0100
changeset 1826 1aa89ccfb626
parent 1825 cce89772ea94
child 1827 a2642e56e0de
Reorder module info fields in the beep module
mcabber/modules/beep/beep.c
--- a/mcabber/modules/beep/beep.c	Sat Mar 27 10:48:36 2010 +0100
+++ b/mcabber/modules/beep/beep.c	Sat Mar 27 11:08:19 2010 +0100
@@ -33,14 +33,14 @@
 /* Module description */
 module_info_t info_beep = {
 	.branch          = MCABBER_BRANCH,
+	.api             = MCABBER_API_VERSION,
+	.version         = MCABBER_VERSION,
+	.description     = "Simple beeper module\n"
+		" Recognizes option beep_enable\n"
+		" Provides command /beep",
 	.requires        = NULL,
 	.init            = beep_init,
 	.uninit          = beep_uninit,
-	.api             = MCABBER_API_VERSION,
-	.version         = MCABBER_VERSION,
-	.description     = "Simple beeper module\n"
-		"Recognizes option beep_enable\n"
-		"Provides command /beep",
 	.next            = NULL,
 };