From af6e3846781e4fdf394293c8a895c84fb901ddef Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 1 Aug 2025 02:42:50 +0100 Subject: [PATCH] Fix typo in comment. --- docs/spec/blocks/metadata.adoc | 4 ++-- include/aaruformat/structs/metadata.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/spec/blocks/metadata.adoc b/docs/spec/blocks/metadata.adoc index 58f97c2..f5b5d2f 100644 --- a/docs/spec/blocks/metadata.adoc +++ b/docs/spec/blocks/metadata.adoc @@ -14,9 +14,9 @@ typedef struct MetadataBlockHeader uint32_t identifier; /**Size in uint8_ts of this whole metadata block */ uint32_t blockSize; - /**Sequence of media set this media beint64_ts to */ + /**Sequence of media set this media belongs to */ int32_t mediaSequence; - /**Total number of media on the media set this media beint64_ts to */ + /**Total number of media on the media set this media belongs to */ int32_t lastMediaSequence; /**Offset to start of creator string from start of this block */ uint32_t creatorOffset; diff --git a/include/aaruformat/structs/metadata.h b/include/aaruformat/structs/metadata.h index 9a88fc8..2ffcecd 100644 --- a/include/aaruformat/structs/metadata.h +++ b/include/aaruformat/structs/metadata.h @@ -27,9 +27,9 @@ typedef struct MetadataBlockHeader { uint32_t identifier; /**Size in uint8_ts of this whole metadata block */ uint32_t blockSize; - /**Sequence of media set this media beint64_ts to */ + /**Sequence of media set this media belongs to */ int32_t mediaSequence; - /**Total number of media on the media set this media beint64_ts to */ + /**Total number of media on the media set this media belongs to */ int32_t lastMediaSequence; /**Offset to start of creator string from start of this block */ uint32_t creatorOffset;