diff options
author | Sylvain Munaut <tnt@246tNt.com> | 2010-07-04 11:41:36 +0200 |
---|---|---|
committer | Sylvain Munaut <tnt@246tNt.com> | 2010-07-04 11:41:36 +0200 |
commit | e10ae5b083fee8c91b7c8275aab72061280753e9 (patch) | |
tree | 1e9badc74a90ec5ed2d9be5df69890f085350191 | |
parent | e335b91ccd6175f43d8bb0c2ea4811e49cb4d95b (diff) |
gsm_utils: Fix typo in gsm band name
thanks to horizon for noticing :p
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r-- | src/gsm_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gsm_utils.c b/src/gsm_utils.c index 913946ed..dc97ceff 100644 --- a/src/gsm_utils.c +++ b/src/gsm_utils.c @@ -199,7 +199,7 @@ const char *gsm_band_name(enum gsm_band band) case GSM_BAND_450: return "GSM450"; case GSM_BAND_480: - return "GSM450"; + return "GSM480"; case GSM_BAND_750: return "GSM750"; case GSM_BAND_810: |