am 72f51179: am cd3897d0: Merge "Move libutils from fdprintf to POSIX dprintf."

* commit '72f51179849c338747fd83d638c90b6be42a43cf':
  Move libutils from fdprintf to POSIX dprintf.
This commit is contained in:
Calin Juravle 2014-05-22 13:44:19 +00:00 committed by Android Git Automerger
commit 29415ce2fb

View file

@ -25,10 +25,6 @@
#include <stdio.h>
#include <stdlib.h>
#ifndef __BIONIC__
#define fdprintf dprintf
#endif
namespace android {
/*
@ -120,7 +116,7 @@ void FdPrinter::printLine(const char* string) {
}
#ifndef USE_MINGW
fdprintf(mFd, mFormatString, mPrefix, string);
dprintf(mFd, mFormatString, mPrefix, string);
#endif
}