Skip to content
Snippets Groups Projects
Commit bb4f8f14 authored by Tianqiang Shuai's avatar Tianqiang Shuai Committed by Jonathan Wakely
Browse files

libstdc++: Fix fwrite error parameter

The first parameter of fwrite should be the const char* __s which want
write to FILE *__file, rather than the FILE *__file write to the FILE
*__file.

libstdc++-v3/ChangeLog:

	* config/io/basic_file_stdio.cc (xwrite) [USE_STDIO_PURE]: Fix
	first argument.
parent 3a61ca1b
No related branches found
No related tags found
No related merge requests found
...@@ -128,7 +128,7 @@ namespace ...@@ -128,7 +128,7 @@ namespace
for (;;) for (;;)
{ {
#ifdef _GLIBCXX_USE_STDIO_PURE #ifdef _GLIBCXX_USE_STDIO_PURE
const std::streamsize __ret = fwrite(__file, 1, __nleft, __file); const std::streamsize __ret = fwrite(__s, 1, __nleft, __file);
#else #else
const std::streamsize __ret = write(__fd, __s, __nleft); const std::streamsize __ret = write(__fd, __s, __nleft);
#endif #endif
......
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