lynxis lazus submitted this change.
2 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
msc_net_init: replace spaces with tabs as indention
Change-Id: I9290cc585601dbadda3a85eddd50ccd0354b0b0b
---
M src/libmsc/msc_net_init.c
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/libmsc/msc_net_init.c b/src/libmsc/msc_net_init.c
index 9b8a8b3..ad0c19a 100644
--- a/src/libmsc/msc_net_init.c
+++ b/src/libmsc/msc_net_init.c
@@ -107,20 +107,20 @@
/* Allocate net->vlr so that the VTY may configure the VLR's data structures */
int msc_vlr_alloc(struct gsm_network *net)
{
- net->vlr = vlr_alloc(net, &msc_vlr_ops);
- if (!net->vlr)
- return -ENOMEM;
- net->vlr->user_ctx = net;
- return 0;
+ net->vlr = vlr_alloc(net, &msc_vlr_ops);
+ if (!net->vlr)
+ return -ENOMEM;
+ net->vlr->user_ctx = net;
+ return 0;
}
/* Launch the VLR, i.e. its GSUP connection */
int msc_vlr_start(struct gsm_network *net)
{
- OSMO_ASSERT(net->vlr);
- OSMO_ASSERT(net->gcm);
+ OSMO_ASSERT(net->vlr);
+ OSMO_ASSERT(net->gcm);
- return vlr_start(net->vlr, net->gcm);
+ return vlr_start(net->vlr, net->gcm);
}
int msc_gsup_client_start(struct gsm_network *net)
To view, visit change 38409. To unsubscribe, or for help writing mail filters, visit settings.