From e328c90f4c1e4d00afb2bb68c365cfcb10e9085b Mon Sep 17 00:00:00 2001 From: Marcus Tillmanns Date: Mon, 17 Oct 2022 13:21:08 +0200 Subject: [PATCH] Utils: Fix code-line lengths Change-Id: Idc273690600bfbefe9b5913e29c6ac5ea30f4e08 Reviewed-by: hjk --- src/libs/utils/deviceshell.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/libs/utils/deviceshell.cpp b/src/libs/utils/deviceshell.cpp index 9dc4633e957..4cd8642ec0f 100644 --- a/src/libs/utils/deviceshell.cpp +++ b/src/libs/utils/deviceshell.cpp @@ -17,14 +17,17 @@ namespace Utils { /*! * The multiplex script waits for input via stdin. * - * To start a command, a message is send with the format " "" \n" + * To start a command, a message is send with + * the format " "" \n" * To stop the script, simply send "exit\n" via stdin * - * Once a message is received, two new streams are created that the new process redirects its output to ( $stdoutraw and $stderrraw ). + * Once a message is received, two new streams are created that the new process redirects + * its output to ( $stdoutraw and $stderrraw ). * * These streams are piped through base64 into the two streams stdoutenc and stderrenc. * - * Two subshells read from these base64 encoded streams, and prepend the command-id, as well as either "O:" or "E:" depending on whether its the stdout or stderr stream. + * Two subshells read from these base64 encoded streams, and prepend the command-id, + * as well as either "O:" or "E:" depending on whether its the stdout or stderr stream. * * Once the process exits its exit code is send to stdout with the command-id and the type "R". *