1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 11:33:12 +02:00

The first of a few "CBX OCDing over code style" commits, focusing on include/* and src/* but not src/core/* or src/modules/*.

This commit is contained in:
Naram Qashat
2010-06-20 18:42:58 -04:00
parent 2528dc80bd
commit 381c9c8870
98 changed files with 3799 additions and 4064 deletions
+3 -4
View File
@@ -7,8 +7,6 @@
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*
*
*/
#include "services.h"
@@ -32,7 +30,8 @@ void anope_SendNumeric(const char *source, int numeric, const char *dest, const
{
va_list args;
char buf[BUFSIZE] = "";
if (fmt) {
if (fmt)
{
va_start(args, fmt);
vsnprintf(buf, BUFSIZE - 1, fmt, args);
va_end(args);
@@ -43,7 +42,7 @@ void anope_SendNumeric(const char *source, int numeric, const char *dest, const
/**
* Set routines for modules to set the prefered function for dealing with things.
**/
void pmodule_ircd_var(IRCDVar * ircdvar)
void pmodule_ircd_var(IRCDVar *ircdvar)
{
ircd = ircdvar;
}