[libcxxabi] r195452 - Comment correction. syslog() syntax is:
Yaron Keren
yaron.keren at gmail.com
Fri Nov 22 04:11:40 PST 2013
Author: yrnkrn
Date: Fri Nov 22 06:11:40 2013
New Revision: 195452
URL: http://llvm.org/viewvc/llvm-project?rev=195452&view=rev
Log:
Comment correction. syslog() syntax is:
void syslog(int facility_priority, const char* format, ...);
This is indeed how it is used in private_typeinfo.cpp.
Modified:
libcxxabi/trunk/src/private_typeinfo.cpp
Modified: libcxxabi/trunk/src/private_typeinfo.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/private_typeinfo.cpp?rev=195452&r1=195451&r2=195452&view=diff
==============================================================================
--- libcxxabi/trunk/src/private_typeinfo.cpp (original)
+++ libcxxabi/trunk/src/private_typeinfo.cpp Fri Nov 22 06:11:40 2013
@@ -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, ...).
More information about the cfe-commits
mailing list