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:
+1
-1
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user