changeset 1826:1aa89ccfb626

Reorder module info fields in the beep module
author Mikael Berthe <mikael@lilotux.net>
date Sat, 27 Mar 2010 11:08:19 +0100
parents cce89772ea94
children a2642e56e0de
files mcabber/modules/beep/beep.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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,
 };