Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

elf2cfetbl Integration candidate: Caelum-rc4+dev26 #121

Merged
merged 3 commits into from
Oct 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Development Build: v3.3.0-rc4+dev30
- Remove C++-style comments
- See <https://github.com/nasa/elf2cfetbl/pull/119>

## Development Build: v3.3.0-rc4+dev26
- Create CHANGELOG.md
- See <https://github.com/nasa/elf2cfetbl/pull/117>
Expand Down
6 changes: 3 additions & 3 deletions elf2cfetbl.c
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ ElfStrMap e_machine_Map[] = {
{0, "* Unknown Machine Type (%d) *"},
};

// Elf Header helper functions
/* Elf Header helper functions */
uint8_t get_e_ident(const union Elf_Ehdr *ElfHeaderLcl, int index)
{
if (TargetWordsizeIs32Bit)
Expand Down Expand Up @@ -423,7 +423,7 @@ uint16_t get_e_shnum(const union Elf_Ehdr *ElfHeaderLcl)
}
}

// Elf Section Header helper functions
/* Elf Section Header helper functions */

uint32_t get_sh_name(const union Elf_Shdr *SectionHeader)
{
Expand Down Expand Up @@ -530,7 +530,7 @@ uint64_t get_sh_entsize(const union Elf_Shdr *SectionHeader)
}
}

// Elf_Sym helper functions
/* Elf_Sym helper functions */

uint32_t get_st_name(const union Elf_Sym *Symbol)
{
Expand Down
2 changes: 1 addition & 1 deletion elf2cfetbl_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/*
* Development Build Macro Definitions
*/
#define ELF2CFETBL_BUILD_NUMBER 26 /*!< @brief Number of commits since baseline */
#define ELF2CFETBL_BUILD_NUMBER 30 /*!< @brief Number of commits since baseline */
#define ELF2CFETBL_BUILD_BASELINE \
"v3.3.0-rc4" /*!< @brief Development Build: git tag that is the base for the current */

Expand Down