Skip to content

Commit

Permalink
Fix IMF tests function prototypes (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
valnoel authored and palemieux committed Sep 8, 2021
1 parent 991c906 commit 728ad1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libavformat/tests/imf.c
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ const char *asset_map_doc =
"</am:AssetList>"
"</am:AssetMap>";

static int test_cpl_parsing() {
static int test_cpl_parsing(void) {
xmlDocPtr doc;
IMFCPL *cpl;
int ret;
Expand Down Expand Up @@ -280,7 +280,7 @@ static const IMFAssetLocator ASSET_MAP_EXPECTED_LOCATORS[5] = {
[4] = {.uuid = {0xdd, 0x04, 0x52, 0x8d, 0x9b, 0x80, 0x45, 0x2a, 0x7a, 0x13, 0x80, 0x5b, 0x08, 0x27, 0x8b, 0x3d}, .absolute_uri = "PKL_IMF_TEST_ASSET_MAP.xml"},
};

static int test_asset_map_parsing() {
static int test_asset_map_parsing(void) {
IMFAssetMap *asset_map;
xmlDoc *doc;
int ret;
Expand Down

0 comments on commit 728ad1a

Please sign in to comment.