Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaron Keren <yaron.keren@gmail.com>2013-11-22 16:11:40 +0400
committerYaron Keren <yaron.keren@gmail.com>2013-11-22 16:11:40 +0400
commitdde62a377cd3e2d9d6cfecd6fa0ba0fdfee3f67e (patch)
treee93222084b540db74603e206bd4e7d697b0f8e44 /libcxxabi/src/private_typeinfo.cpp
parentf2edc07571ae376ea97ae963b6ac0fb8e762ec2e (diff)
Comment correction. syslog() syntax is:
void syslog(int facility_priority, const char* format, ...); This is indeed how it is used in private_typeinfo.cpp. llvm-svn: 195452
Diffstat (limited to 'libcxxabi/src/private_typeinfo.cpp')
-rw-r--r--libcxxabi/src/private_typeinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxxabi/src/private_typeinfo.cpp b/libcxxabi/src/private_typeinfo.cpp
index 640ff8ccfe1f..d43f7725c8c6 100644
--- a/libcxxabi/src/private_typeinfo.cpp
+++ b/libcxxabi/src/private_typeinfo.cpp
@@ -27,7 +27,7 @@
// The current implementation of _LIBCXX_DYNAMIC_FALLBACK requires a
// printf-like function called syslog:
//
-// void syslog(const char* format, ...);
+// void syslog(int facility_priority, const char* format, ...);
//
// If you want this functionality but your platform doesn't have syslog,
// just implement it in terms of fprintf(stderr, ...).