Fix a typo

svn path=/branches/ros-amd64-bringup/; revision=46367
This commit is contained in:
Timo Kreuzer 2010-03-23 21:32:01 +00:00
parent 6716492137
commit 4cc2109701

View file

@ -81,7 +81,7 @@ extern "C" {
#define __va_copy(d,s) __builtin_va_copy(d,s)
#elif defined(_MSC_VER)
#if defiend(_M_IX86)
#if defined(_M_IX86)
#define _crt_va_start(v,l) ((void)((v) = (va_list)_ADDRESSOF(l) + _INTSIZEOF(l)))
#define _crt_va_arg(v,l) (*(l *)(((v) += _INTSIZEOF(l)) - _INTSIZEOF(l)))
#define _crt_va_end(v) ((void)((v) = (va_list)0))