aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2018-02-06 18:46:57 +0100
committerMax <msuraev@sysmocom.de>2018-02-07 12:08:12 +0100
commit29ce08a77aaa1c7ff5e1e40e41bba3bf16455636 (patch)
tree0bd0323fc9195f513ed707a85786c8842aae2670
parent6817190efd5276cc6e744c08bb24f79f884029a5 (diff)
VLR tests: remove weird code
Having while(0) as a body for for() cycle generate too much WTF while looking at the code while not serving any obvious purpose. Let's just drop it to avoid confusing developers. Change-Id: I1f571ec319ff3231fd9acd4066e470476c3b1f78 Related: OS#2864
-rw-r--r--tests/msc_vlr/msc_vlr_tests.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/msc_vlr/msc_vlr_tests.c b/tests/msc_vlr/msc_vlr_tests.c
index f373f1ea9..c639f98a4 100644
--- a/tests/msc_vlr/msc_vlr_tests.c
+++ b/tests/msc_vlr/msc_vlr_tests.c
@@ -847,7 +847,7 @@ static void run_tests(int nr, const char *imsi)
fprintf(stderr, "(test nr %d)\n", test_nr + 1);
check_talloc(msgb_ctx, tall_bsc_ctx, 8);
- } while(0);
+ }
}
int main(int argc, char **argv)