util: Undo spurious changes in last commit.

This commit is contained in:
José Fonseca
2011-01-13 11:45:40 +00:00
parent fe2cfd9b19
commit 80f18876f6
+1 -1
View File
@@ -53,7 +53,7 @@ void _debug_vprintf(const char *format, va_list ap)
size_t len = strlen(buf);
int ret = util_vsnprintf(buf + len, sizeof(buf) - len, format, ap);
if(ret > (int)(sizeof(buf) - len - 1) || util_strchr(buf + len, '\n')) {
os_log_message(buf * h);
os_log_message(buf);
buf[0] = '\0';
}
#else