diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2013-04-21 21:04:19 +0200 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2013-04-21 21:04:19 +0200 |
commit | d0ce550251f8d1809f768428c11da0f80f940f10 (patch) | |
tree | 88185055492b87eb2f7a5b0a817431692628e04e | |
parent | e1f164dd2f1e67f34cf92e43c3e8888eb5646016 (diff) |
osmo-arfcn: Return something from the method
This is a fatal error when building RPMs for OpenSUSE.
-rw-r--r-- | utils/osmo-arfcn.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/osmo-arfcn.c b/utils/osmo-arfcn.c index 2be3958e..5103c97b 100644 --- a/utils/osmo-arfcn.c +++ b/utils/osmo-arfcn.c @@ -77,6 +77,7 @@ static int freq2arfcn(int freq10, int uplink) printf("%s: ARFCN %4d\n", gsm_band_name(gsm_arfcn2band(arfcn)), arfcn & ~ARFCN_FLAG_MASK); + return 0; } static void help(const char *progname) |