Skip to content

Commit 7db3c71

Browse files
authored
correct IMS in CGGTTS header (#7)
1 parent 244479d commit 7db3c71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cggtts/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ impl std::fmt::Display for CGGTTS {
836836
content.push_str(&format!("CH = {}\n", self.nb_channels));
837837

838838
if let Some(ims) = &self.ims {
839-
content.push_str(&format!("RCVR = {:X}\n", ims));
839+
content.push_str(&format!("IMS = {:X}\n", ims));
840840
} else {
841841
content.push_str("IMS = 99999\n");
842842
}

0 commit comments

Comments
 (0)