Skip to content

Commit

Permalink
Fix nasa#1441, Replace Header Content Type magic number.
Browse files Browse the repository at this point in the history
  • Loading branch information
zanzaben committed May 20, 2021
1 parent 8443a46 commit be1d5d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/fs/fsw/src/cfe_fs_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ int32 CFE_FS_WriteHeader(osal_id_t FileDes, CFE_FS_Header_t *Hdr)
Hdr->Length = sizeof(CFE_FS_Header_t);

/* put the header, 'cfe1' in hex, in to the content type */
Hdr->ContentType = 0x63464531;
Hdr->ContentType = CFE_FS_FILE_CONTENT_ID;

/*
** Fill in the timestamp fields...
Expand Down

0 comments on commit be1d5d5

Please sign in to comment.