From dcc98da018ce7639b0dea3eb9df464031093bfbd Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 22 May 2014 01:23:29 -0700 Subject: [PATCH] Move libutils from fdprintf to POSIX dprintf. Bug: 11156955 Change-Id: I70a75c07744d9897d76b180e4940b8717297c53f --- libutils/Printer.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libutils/Printer.cpp b/libutils/Printer.cpp index 263e7404b..1dc86323b 100644 --- a/libutils/Printer.cpp +++ b/libutils/Printer.cpp @@ -25,10 +25,6 @@ #include #include -#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 }