From 0b7231da847ccfa07149f7519151148a5df15b7b Mon Sep 17 00:00:00 2001 From: Mikael Berthe Date: Sat, 27 Mar 2010 11:08:19 +0100 Subject: [PATCH] Reorder module info fields in the beep module --- mcabber/modules/beep/beep.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mcabber/modules/beep/beep.c b/mcabber/modules/beep/beep.c index 6f77bbb..69396e9 100644 --- a/mcabber/modules/beep/beep.c +++ b/mcabber/modules/beep/beep.c @@ -33,14 +33,14 @@ static void beep_uninit (void); /* Module description */ module_info_t info_beep = { .branch = MCABBER_BRANCH, - .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", + " Recognizes option beep_enable\n" + " Provides command /beep", + .requires = NULL, + .init = beep_init, + .uninit = beep_uninit, .next = NULL, }; -- 2.11.4.GIT