summaryrefslogtreecommitdiff
path: root/src/pal/src/cruntime/silent_printf.cpp
diff options
context:
space:
mode:
authorGeoff Norton <grompf@gmail.com>2015-02-14 11:07:24 -0800
committerGeoff Norton <grompf@gmail.com>2015-02-14 11:07:24 -0800
commit2e0bfb371f58a5ebd08987501e58d6bd135df286 (patch)
treebe88f74506a053d4dced8d2b56830d184a6b9439 /src/pal/src/cruntime/silent_printf.cpp
parent9375d9833b128b87e98b0bf8fb6b333f04ab0331 (diff)
downloadcoreclr-2e0bfb371f58a5ebd08987501e58d6bd135df286.tar.gz
coreclr-2e0bfb371f58a5ebd08987501e58d6bd135df286.tar.bz2
coreclr-2e0bfb371f58a5ebd08987501e58d6bd135df286.zip
Remove PAL_printf_arg_remover - what its doing is against the standards, and breaks on some platforms
Diffstat (limited to 'src/pal/src/cruntime/silent_printf.cpp')
-rw-r--r--src/pal/src/cruntime/silent_printf.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pal/src/cruntime/silent_printf.cpp b/src/pal/src/cruntime/silent_printf.cpp
index 440e50da08..f818da18f0 100644
--- a/src/pal/src/cruntime/silent_printf.cpp
+++ b/src/pal/src/cruntime/silent_printf.cpp
@@ -209,7 +209,6 @@ INT Silent_PAL_vsnprintf(LPSTR Buffer, INT Count, LPCSTR Format, va_list ap)
}
TempInt = PAL__vsnprintf(BufferPtr, TempCount, TempBuff, ap);
- PAL_printf_arg_remover((va_list *)&ap, Precision, Type, Prefix);
}
if (TempInt < 0 || static_cast<size_t>(TempInt) >= TempCount) /* buffer not long enough */
@@ -407,7 +406,6 @@ int Silent_PAL_vfprintf(PAL_FILE *stream, const char *format, va_list ap)
else
{
TempInt = PAL_vfprintf(stream, TempBuff, ap);
- PAL_printf_arg_remover((va_list *)&ap, Precision, Type, Prefix);
}
if (-1 != TempInt)