equal
deleted
inserted
replaced
599 _LIT(KFormat, "Command '%S' terminated with reason %d\r\n"); |
599 _LIT(KFormat, "Command '%S' terminated with reason %d\r\n"); |
600 TBuf<256> buf; |
600 TBuf<256> buf; |
601 TOverflowTruncate overflow; |
601 TOverflowTruncate overflow; |
602 buf.AppendFormat(KFormat, &overflow, thisPipedCommand.iCommandName, aError); |
602 buf.AppendFormat(KFormat, &overflow, thisPipedCommand.iCommandName, aError); |
603 iStderr.Write(buf); |
603 iStderr.Write(buf); |
604 if (aError >= 0) |
604 if (aError >= 0) |
605 { |
605 { |
606 // Terminate 0 shouldn't equate to a completionError of KErrNone |
606 // Terminate 0 shouldn't equate to a completionError of KErrNone |
607 aError = KErrDied; |
607 aError = KErrDied; |
608 } |
608 } |
609 } |
609 } |