summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-03-01 17:22:54 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-03-01 17:22:54 +0000
commit62d98b1aa43bd45ee3fcbc3475025fcc717e193e (patch)
treed86139f69e86424108b67fd4fd925ecec7d45df0 /src
parent8d15178d62ea6028c51ee39f0e810865423cd73c (diff)
- white-space changes / style cleanups
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3080 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src')
-rw-r--r--src/mempool.c2
-rw-r--r--src/s_user.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mempool.c b/src/mempool.c
index c88e7ba..5b340f9 100644
--- a/src/mempool.c
+++ b/src/mempool.c
@@ -510,7 +510,7 @@ mp_pool_sort_used_chunks(mp_pool_t *pool)
chunks = MyMalloc(sizeof(mp_chunk_t *) * n);
- for (i=0,chunk = pool->used_chunks; chunk; chunk = chunk->next)
+ for (i = 0, chunk = pool->used_chunks; chunk; chunk = chunk->next)
chunks[i++] = chunk;
qsort(chunks, n, sizeof(mp_chunk_t *), mp_pool_sort_used_chunks_helper);
diff --git a/src/s_user.c b/src/s_user.c
index 2d068e9..1403ca9 100644
--- a/src/s_user.c
+++ b/src/s_user.c
@@ -785,7 +785,7 @@ report_and_set_user_flags(struct Client *source_p, const struct MaskItem *conf)
SetExemptLimits(source_p);
sendto_one(source_p,
":%s NOTICE %s :*** You are exempt from user limits. Congrats.",
- me.name,source_p->name);
+ me.name, source_p->name);
}
if (IsConfCanFlood(conf))