laforge
/
openbts-osmo
Archived
1
0
Fork 0

fix constructor reordering warning

This commit is contained in:
Harald Welte 2011-11-13 15:34:19 +01:00
parent 3cabf472d9
commit 0e1fc5e809
1 changed files with 2 additions and 2 deletions

View File

@ -133,8 +133,8 @@ public:
Specific sub-class initializers allocate new components as needed.
*/
OsmoLogicalChannel(OsmoTS *osmo_ts, unsigned int ss_nr)
:mSACCHL1(NULL),
mL1(NULL)
:mL1(NULL),
mSACCHL1(NULL)
{
mTS = osmo_ts;
mSS = ss_nr;