Skip to content
Snippets Groups Projects
Commit ed19ee38 authored by deuce's avatar deuce
Browse files

Fix error in last commit.

Thanks Digital Man!
parent f66178e4
No related branches found
No related tags found
No related merge requests found
......@@ -854,7 +854,7 @@ CIOLIBEXPORT int CIOLIBCALL ciolib_cprintf(const char *fmat, ...)
{
va_list argptr;
int ret;
#if defined(_MSC_VER) || define(__MSVCRT__) /* Can't figure out a way to allocate a "big enough" buffer for Win32. */
#if defined(_MSC_VER) || defined(__MSVCRT__) /* Can't figure out a way to allocate a "big enough" buffer for Win32. */
char str[16384];
#else
char *str;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment