Skip to content

Commit

Permalink
Fix nfeplay template identifu ID
Browse files Browse the repository at this point in the history
  • Loading branch information
phaag committed Oct 23, 2024
1 parent 4c8b892 commit 18dc06d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nfreplay/send_v9.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ static outTemplate_t *GetOutputTemplate(recordHandle_t *recordHandle) {

uint64_t elementBits = 0;
for (int i = 0; i < MAXEXTENSIONS; i++) {
if (recordHandle->extensionList[i]) elementBits |= 1 << i;
if (recordHandle->extensionList[i]) elementBits |= (uint64_t)1 << i;
}

outTemplate_t **t = &outTemplates;
Expand Down

0 comments on commit 18dc06d

Please sign in to comment.