summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaron Keren <yaron.keren@gmail.com>2013-11-22 12:11:40 +0000
committerYaron Keren <yaron.keren@gmail.com>2013-11-22 12:11:40 +0000
commit36fd93fd039ef14005d6ab51c2e9f2816d2b7063 (patch)
treef3b91c64d98e434ffa6c740126ecce7f731e526b
parent38a0eeb3adcb731111cfb03d4cfef5e4d0232cbb (diff)
downloadlibcxxabi_35a-36fd93fd039ef14005d6ab51c2e9f2816d2b7063.tar.gz
Comment correction. syslog() syntax is:
void syslog(int facility_priority, const char* format, ...); This is indeed how it is used in private_typeinfo.cpp. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@195452 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--src/private_typeinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/private_typeinfo.cpp b/src/private_typeinfo.cpp
index 640ff8c..d43f772 100644
--- a/src/private_typeinfo.cpp
+++ b/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, ...).