diff options
author | Yaron Keren <yaron.keren@gmail.com> | 2013-11-22 12:11:40 +0000 |
---|---|---|
committer | Yaron Keren <yaron.keren@gmail.com> | 2013-11-22 12:11:40 +0000 |
commit | dde62a377cd3e2d9d6cfecd6fa0ba0fdfee3f67e (patch) | |
tree | e93222084b540db74603e206bd4e7d697b0f8e44 /libcxxabi/src | |
parent | f2edc07571ae376ea97ae963b6ac0fb8e762ec2e (diff) | |
download | bcm5719-llvm-dde62a377cd3e2d9d6cfecd6fa0ba0fdfee3f67e.tar.gz bcm5719-llvm-dde62a377cd3e2d9d6cfecd6fa0ba0fdfee3f67e.zip |
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')
-rw-r--r-- | libcxxabi/src/private_typeinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxxabi/src/private_typeinfo.cpp b/libcxxabi/src/private_typeinfo.cpp index 640ff8ccfe1..d43f7725c8c 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, ...). |