...c(63): error: #167: argument of type "u8" is incompatible with parameter of type "char *restrict"vsprintf(&UartPoint->UartSend_ex.SendBuf_ex[0],fmt,ap);
这个错误咋回事?
原代码粘贴如下:
va_list ap;
ClearBuf(UartPoint);
va_start(ap,fmt);
vsprintf(&UartPoint->UartSend_ex.SendBuf_ex[0],fmt,ap);
va_end(ap);
|