Skip to content

Commit 7f7046e

Browse files
Merge pull request #5 from WangHaoranRobin/robin_fork_master
server: remove trailling white space
2 parents 6c76c31 + 02c96a4 commit 7f7046e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/server/server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ static std::string tokens_to_output_formatted_string(const llama_context * ctx,
103103
// if first bit is 1, meaning it's a partial character
104104
if ((out[0] & 0x80) == 0x80) {
105105
std::stringstream ss;
106-
ss<< std::hex << (out[0] & 0xff);
106+
ss<< std::hex << (out[0] & 0xff);
107107
std::string res ( ss.str() );
108108
out = "byte: \\x" + res;
109109
}

0 commit comments

Comments
 (0)