Skip to content

Commit 262005a

Browse files
authored
common : comma should be semicolon (#4137)
1 parent 35985ac commit 262005a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ void llama_batch_add(
931931
const std::vector<llama_seq_id> & seq_ids,
932932
bool logits) {
933933
batch.token [batch.n_tokens] = id;
934-
batch.pos [batch.n_tokens] = pos,
934+
batch.pos [batch.n_tokens] = pos;
935935
batch.n_seq_id[batch.n_tokens] = seq_ids.size();
936936
for (size_t i = 0; i < seq_ids.size(); ++i) {
937937
batch.seq_id[batch.n_tokens][i] = seq_ids[i];

0 commit comments

Comments
 (0)