File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
hadoop-tools/hadoop-pipes/src/main/native/pipes/impl Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -287,6 +287,8 @@ Release 2.0.3-alpha - Unreleased
287287 MAPREDUCE-4969. TestKeyValueTextInputFormat test fails with Open JDK 7.
288288 (Arpit Agarwal via suresh)
289289
290+ MAPREDUCE-4953. HadoopPipes misuses fprintf. (Andy Isaacson via atm)
291+
290292Release 2.0.2-alpha - 2012-09-07
291293
292294 INCOMPATIBLE CHANGES
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ namespace HadoopPipes {
127127 static const char lineSeparator = ' \n ' ;
128128
129129 void writeBuffer (const string& buffer) {
130- fprintf (stream, quoteString (buffer, " \t\n " ).c_str ());
130+ fputs ( quoteString (buffer, " \t\n " ).c_str (), stream );
131131 }
132132
133133 public:
You can’t perform that action at this time.
0 commit comments