Skip to content

Commit

Permalink
Merge pull request #545 from dceara/issue544-fix-typo-domain-id
Browse files Browse the repository at this point in the history
output_json: Fix observationDoaminID typo in json output.
  • Loading branch information
phaag authored Jul 7, 2024
2 parents 0659254 + 44c2fe5 commit bc3c2c9
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 bc3c2c9

Please sign in to comment.