am abca8709: am 49fbec6d: HACK: remove %m support from printf.
* commit 'abca8709895d5a67fb8acdfbc5e859463099f1f0': HACK: remove %m support from printf.
This commit is contained in:
commit
174fcc628f
@ -230,7 +230,9 @@ static void SendRepeat(Out& o, char ch, int count) {
|
||||
/* Perform formatted output to an output target 'o' */
|
||||
template <typename Out>
|
||||
static void out_vformat(Out& o, const char* format, va_list args) {
|
||||
#if 0
|
||||
int caller_errno = errno;
|
||||
#endif
|
||||
int nn = 0;
|
||||
|
||||
for (;;) {
|
||||
@ -379,9 +381,11 @@ static void out_vformat(Out& o, const char* format, va_list args) {
|
||||
} else if (c == '%') {
|
||||
buffer[0] = '%';
|
||||
buffer[1] = '\0';
|
||||
#if 0
|
||||
} else if (c == 'm') {
|
||||
// syslog-like %m for strerror(errno).
|
||||
str = strerror(caller_errno);
|
||||
#endif
|
||||
} else {
|
||||
__assert(__FILE__, __LINE__, "conversion specifier unsupported");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user