Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Joshua Root
libaacs
Commits
e954f05f
Commit
e954f05f
authored
Jun 20, 2020
by
John Doe
Committed by
hpi1
Jun 20, 2020
Browse files
Fix mkb_type() return value
parent
2ed84a0b
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/libaacs/mkb.c
View file @
e954f05f
...
...
@@ -110,7 +110,7 @@ size_t mkb_data_size(MKB *mkb)
}
uint
8
_t
mkb_type
(
MKB
*
mkb
)
uint
32
_t
mkb_type
(
MKB
*
mkb
)
{
const
uint8_t
*
rec
=
mkb_type_and_version_record
(
mkb
);
...
...
src/libaacs/mkb.h
View file @
e954f05f
...
...
@@ -36,7 +36,7 @@ BD_PRIVATE const uint8_t *mkb_data(MKB *mkb);
BD_PRIVATE
size_t
mkb_data_size
(
MKB
*
mkb
);
// returns type
BD_PRIVATE
uint
8
_t
mkb_type
(
MKB
*
mkb
);
BD_PRIVATE
uint
32
_t
mkb_type
(
MKB
*
mkb
);
// returns version
BD_PRIVATE
uint32_t
mkb_version
(
MKB
*
mkb
);
// returns type and version record (required to verify signatures)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment