Skip to content

Commit

Permalink
output_json: Fix observationDoaminID typo in json output.
Browse files Browse the repository at this point in the history
Closes #544
  • Loading branch information
dceara committed Jul 5, 2024
1 parent 0659254 commit 44c2fe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/output/output_json.c
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ static void stringEXtunIPv6(FILE *stream, void *extensionRecord, const char *ind
static void stringEXobservation(FILE *stream, void *extensionRecord, const char *indent, const char *fs) {
EXobservation_t *observation = (EXobservation_t *)extensionRecord;
fprintf(stream,
"%s\"observationDoaminID\" : %u%s"
"%s\"observationDomainID\" : %u%s"
"%s\"observationPointID\" : %llu%s",
indent, observation->domainID, fs, indent, (long long unsigned)observation->pointID, fs);

Expand Down

0 comments on commit 44c2fe5

Please sign in to comment.