build_system: Fix some warnings highlighted by clang

Fix some warnings found with clang.

Change-Id: I5195b6189b148c2ee3ed4a19d015a6d4ef3e77bd
This commit is contained in:
George Joseph
2016-02-01 12:04:06 -07:00
parent 52b29f9b4c
commit 40da6434c1
9 changed files with 20 additions and 19 deletions

View File

@@ -356,8 +356,8 @@ static int fax_generator_generate(struct ast_channel *chan, void *data, int len,
}
static struct ast_generator generator = {
alloc: fax_generator_alloc,
generate: fax_generator_generate,
.alloc = fax_generator_alloc,
.generate = fax_generator_generate,
};