Skip to content

Commit 07d2da0

Browse files
committed
forgot the newline that needs to be sent to the model
1 parent 8470458 commit 07d2da0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ int main(int argc, char ** argv) {
10131013
else {
10141014
line.pop_back(); // Remove the continue character
10151015
}
1016-
buffer += line; // Append the line to the result
1016+
buffer += line + '\n'; // Append the line to the result
10171017
} while (another_line);
10181018
if (params.use_color) printf(ANSI_COLOR_RESET);
10191019

0 commit comments

Comments
 (0)