# HG changeset patch # User Mikael Berthe # Date 1269684499 -3600 # Node ID 1aa89ccfb62672d40eb8a3f6486b13fdbccdfe87 # Parent cce89772ea94fce5594247463d8af9e31937d3bb Reorder module info fields in the beep module diff -r cce89772ea94 -r 1aa89ccfb626 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, };