style: modules mustn't have braces in the line.
authorWilfried Goesgens <dothebart@citadel.org>
Tue, 12 Feb 2013 20:33:08 +0000 (21:33 +0100)
committerWilfried Goesgens <dothebart@citadel.org>
Tue, 12 Feb 2013 20:33:08 +0000 (21:33 +0100)
citadel/modules/autocompletion/serv_autocompletion.c
citadel/modules/checkpoint/serv_checkpoint.c

index 0880ace3c79b638cdb15360361edd6575a698091..f84020e7a12aa461ea0f4d917ee7d0670e80c902 100644 (file)
@@ -216,7 +216,8 @@ void cmd_auto(char *argbuf) {
 }
 
 
-CTDL_MODULE_INIT(autocompletion) {
+CTDL_MODULE_INIT(autocompletion)
+{
        if (!threading)
        {
                CtdlRegisterProtoHook(cmd_auto, "AUTO", "Do recipient autocompletion");
index baa2779a234442020a56a2338f9a5c6205d0f488..578622b2e9e34649be2d90d00c9c3c693628048e 100644 (file)
@@ -33,7 +33,8 @@
 #include "ctdl_module.h"
 #include "context.h"
 
-CTDL_MODULE_INIT(checkpoint) {
+CTDL_MODULE_INIT(checkpoint)
+{
        if (threading)
        {
                CtdlRegisterSessionHook(cdb_checkpoint, EVT_TIMER, PRIO_CLEANUP + 10);