Move libutils from fdprintf to POSIX dprintf.

Bug: 11156955
Change-Id: I70a75c07744d9897d76b180e4940b8717297c53f
This commit is contained in:
Elliott Hughes 2014-05-22 01:23:29 -07:00
parent 30291f2119
commit dcc98da018

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
}