Fix C++ style // comments in a couple of C files

llvm-svn: 210325
This commit is contained in:
Timur Iskhodzhanov 2014-06-06 11:04:46 +00:00
parent f2a380325d
commit eae19460a7
2 changed files with 4 additions and 4 deletions

View File

@ -100,8 +100,8 @@ void thread_runner(void *client_data_v) {
}
static void flush_atexit(void) {
// stdout, and surprisingly even stderr, are not always flushed on process
// and thread exit, particularly when the system is under heavy load.
/* stdout, and surprisingly even stderr, are not always flushed on process
* and thread exit, particularly when the system is under heavy load. */
fflush(stdout);
fflush(stderr);
}

View File

@ -4119,8 +4119,8 @@ void thread_runner(void *client_data_v) {
}
static void flush_atexit(void) {
// stdout, and surprisingly even stderr, are not always flushed on process
// and thread exit, particularly when the system is under heavy load.
/* stdout, and surprisingly even stderr, are not always flushed on process
* and thread exit, particularly when the system is under heavy load. */
fflush(stdout);
fflush(stderr);
}