libtext/easy_sprintf.c: dropped redundant parantheses

This commit is contained in:
Peter Simons 2013-02-09 20:16:02 +01:00
parent 4cd5d72876
commit 802724c3be

View File

@ -22,7 +22,7 @@
#include <string.h>
#include "text.h"
#if !defined(HAVE_VSNPRINTF) && defined(HAVE___VSNPRINTF)
#if !defined HAVE_VSNPRINTF && defined HAVE___VSNPRINTF
# define vsnprintf __vsnprintf
#endif