summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'libutils/Printer.cpp')
-rw-r--r--libutils/Printer.cpp6
1 files changed, 1 insertions, 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 @@
25#include <stdio.h> 25#include <stdio.h>
26#include <stdlib.h> 26#include <stdlib.h>
27 27
28#ifndef __BIONIC__
29#define fdprintf dprintf
30#endif
31
32namespace android { 28namespace android {
33 29
34/* 30/*
@@ -120,7 +116,7 @@ void FdPrinter::printLine(const char* string) {
120 } 116 }
121 117
122#ifndef USE_MINGW 118#ifndef USE_MINGW
123 fdprintf(mFd, mFormatString, mPrefix, string); 119 dprintf(mFd, mFormatString, mPrefix, string);
124#endif 120#endif
125} 121}
126 122