mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 23:08:32 +00:00
clang compiler warnings: Fix various warnings for tests
This patch fixes a variety of clang compiler warnings for unit tests. This includes autological comparison issues, ignored return values, and interestingly enough, one embedded function. Fun! Review: https://reviewboard.asterisk.org/r/4555 ASTERISK-24917 Reported by: dkdegroot patches: rb4555.patch submitted by dkdegroot (License 6600) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@434705 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -212,7 +212,7 @@ AST_TEST_DEFINE(string_field_test)
|
||||
}
|
||||
|
||||
if (AST_STRING_FIELD_ALLOCATION(test_struct.string2) != strlen("hippopotamus face") + 1) {
|
||||
ast_test_status_update(test, "The allocation amount is incorrect for string2. We expect %lu but it has %hu\n",
|
||||
ast_test_status_update(test, "The allocation amount is incorrect for string2. We expect %lu but it has %d\n",
|
||||
(unsigned long) strlen("hippopotamus face"), AST_STRING_FIELD_ALLOCATION(test_struct.string2) + 1);
|
||||
goto error;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user