fix bug after commit 3dfa11b89e6a74e6857c11e3029b372c746d535f .change arfcn2downlink(a,b) to one argument in grgsm_decode and grgsm_capture and grgsm_channelize
diff --git a/apps/helpers/grgsm_channelize b/apps/helpers/grgsm_channelize
index fb30334..5735a1a 100755
--- a/apps/helpers/grgsm_channelize
+++ b/apps/helpers/grgsm_channelize
@@ -94,7 +94,7 @@
         print("Extracting channels %s, given that the center frequency is at %s" % (str(channels), eng_notation.num_to_str(fc)))
 
         for channel in channels:
-            channel_freq = arfcn.arfcn2downlink(channel, band)
+            channel_freq = arfcn.arfcn2downlink(channel)
             if channel_freq is None:
                 print("Warning: invalid ARFCN %d for band %s" % (channel, band))
                 continue