forgot the newline that needs to be sent to the model
This commit is contained in:
parent
8470458b64
commit
07d2da0cb0
1 changed files with 1 additions and 1 deletions
2
main.cpp
2
main.cpp
|
@ -1013,7 +1013,7 @@ int main(int argc, char ** argv) {
|
|||
else {
|
||||
line.pop_back(); // Remove the continue character
|
||||
}
|
||||
buffer += line; // Append the line to the result
|
||||
buffer += line + '\n'; // Append the line to the result
|
||||
} while (another_line);
|
||||
if (params.use_color) printf(ANSI_COLOR_RESET);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue