summaryrefslogtreecommitdiff
path: root/tools/c-arcmt-test
diff options
context:
space:
mode:
authorTimur Iskhodzhanov <timurrrr@google.com>2014-06-06 11:04:46 +0000
committerTimur Iskhodzhanov <timurrrr@google.com>2014-06-06 11:04:46 +0000
commit074f566e77c00adf47a771574b823142df3f9167 (patch)
tree1cf8081336bd8a9622bbd80dddc4466f5bb1642f /tools/c-arcmt-test
parentfd58aa45476a5e725ddde5b8946b3f8da2f709f1 (diff)
downloadclang-074f566e77c00adf47a771574b823142df3f9167.tar.gz
clang-074f566e77c00adf47a771574b823142df3f9167.tar.bz2
clang-074f566e77c00adf47a771574b823142df3f9167.tar.xz
Fix C++ style // comments in a couple of C files
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@210325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/c-arcmt-test')
-rw-r--r--tools/c-arcmt-test/c-arcmt-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/c-arcmt-test/c-arcmt-test.c b/tools/c-arcmt-test/c-arcmt-test.c
index 60faed03dc..3bbb2d5d6a 100644
--- a/tools/c-arcmt-test/c-arcmt-test.c
+++ b/tools/c-arcmt-test/c-arcmt-test.c
@@ -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);
}