1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 05:16:38 +02:00

Remove 2 unneeded ternary operators, the result is the same with or without them, patch from Sergio.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2275 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
cyberbotx
2009-04-13 19:07:49 +00:00
parent 22b53ec9cd
commit 76e83f613b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -225,6 +225,6 @@ void IRCDProto::SendNumeric(const char *source, int numeric, const char *dest, c
va_start(args, fmt);
vsnprintf(buf, BUFSIZE - 1, fmt, args);
va_end(args);
SendNumericInternal(source, numeric, dest, *buf ? buf : NULL);
SendNumericInternal(source, numeric, dest, buf);
}