Skip to content

Commit

Permalink
[test] Fixed compilation warning
Browse files Browse the repository at this point in the history
Void function returning a value.
  • Loading branch information
monich committed Jul 2, 2017
1 parent f229359 commit a8c7460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mms-lib/test/common/test_connman.c
Expand Up @@ -75,7 +75,7 @@ mms_connman_test_set_port(
unsigned short port,
gboolean proxy)
{
return mms_connman_test_set_proxy(cm, proxy ? "127.0.0.1" : NULL, port);
mms_connman_test_set_proxy(cm, proxy ? "127.0.0.1" : NULL, port);
}

void
Expand Down

0 comments on commit a8c7460

Please sign in to comment.