From: nasm-bot f. C. G. <gor...@gm...> - 2014-11-26 07:45:25
|
Commit-ID: b2c344978897b840d95ea65af047305e468e6074 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=b2c344978897b840d95ea65af047305e468e6074 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Wed, 26 Nov 2014 10:44:19 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Wed, 26 Nov 2014 10:44:19 +0300 compiler: Fix typo for HAVE__VSNPRINTF Reported-by: Michael Murashkin <rag...@in...> Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- compiler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler.h b/compiler.h index 5805f5a..62425c8 100644 --- a/compiler.h +++ b/compiler.h @@ -93,7 +93,7 @@ int snprintf(char *, size_t, const char *, ...); #endif #ifndef HAVE_VSNPRINTF -# ifdef HAVE__VSNPRINT +# ifdef HAVE__VSNPRINTF # define vsnprintf _vsnprintf # else int vsnprintf(char *, size_t, const char *, va_list); |