diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-11-21 07:59:01 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-11-21 07:59:01 +0100 |
commit | 96e421c1149e1dacbe164907e07cccd16d6395b7 (patch) | |
tree | 261750d9c4947e239029f3ee26753b89fdcc01b5 /etisnoop.cpp | |
parent | 8895b894cedbda048bb5d9fdb6591737fd4165ff (diff) | |
download | etisnoop-96e421c1149e1dacbe164907e07cccd16d6395b7.tar.gz etisnoop-96e421c1149e1dacbe164907e07cccd16d6395b7.tar.bz2 etisnoop-96e421c1149e1dacbe164907e07cccd16d6395b7.zip |
Remove warnings
Diffstat (limited to 'etisnoop.cpp')
-rw-r--r-- | etisnoop.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/etisnoop.cpp b/etisnoop.cpp index 6f15178..29bf146 100644 --- a/etisnoop.cpp +++ b/etisnoop.cpp @@ -574,7 +574,7 @@ void decodeFIG(unsigned char* f, break; case 2: // FIG 0/2 { - unsigned short int sref, scid, sid; + unsigned short int sref, sid; unsigned char cid, ecc, local, caid, ncomp, timd, ps, ca, subchid, scty; int k=1; string psdesc; @@ -629,9 +629,12 @@ void decodeFIG(unsigned char* f, scty = scomp[0] & 0x3F; subchid = (scomp[1] & 0xFC) >> 2; + /* useless, kept as reference if (timd == 3) { + unsigned short int scid; scid = scty*64 + subchid; } + */ if (ps == 0) { psdesc = "Secondary service"; |