diff options
author | Olivier CrĂȘte <olivier.crete@collabora.com> | 2014-03-27 17:50:08 -0400 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2014-03-27 18:05:40 -0400 |
commit | 80be0d937f3c069aeb9613854095c25568c4c961 (patch) | |
tree | f3335fcd67ab52bcf53c8b67ff3bd4ac81a5f6eb /tests/test-fullmode.c | |
parent | 64e7a425ee2e8ae6b6a6c7a0f24c3367c6f6e997 (diff) | |
download | libnice-80be0d937f3c069aeb9613854095c25568c4c961.tar.gz |
test-fullmode: Do #if instead of #ifdef as we set it to 0
Diffstat (limited to 'tests/test-fullmode.c')
-rw-r--r-- | tests/test-fullmode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-fullmode.c b/tests/test-fullmode.c index 3a10d47..6f419bd 100644 --- a/tests/test-fullmode.c +++ b/tests/test-fullmode.c @@ -373,7 +373,7 @@ static int run_full_test (NiceAgent *lagent, NiceAgent *ragent, NiceAddress *bas nice_agent_set_port_range (ragent, rs_id, 2, 10000, 10002); g_assert (nice_agent_gather_candidates (ragent, rs_id) == TRUE); -#ifdef USE_LOOPBACK +#if USE_LOOPBACK { GSList *cands = NULL, *i; NiceCandidate *cand = NULL; |