diff options
author | Philipp Maier <pmaier@sysmocom.de> | 2018-12-07 11:00:59 +0100 |
---|---|---|
committer | dexter <pmaier@sysmocom.de> | 2018-12-07 11:53:23 +0000 |
commit | 8a942d27b6d300e1a702401e9a5d4e97be15da77 (patch) | |
tree | f6e30dc74dd45ee71b1f00d57f8693c68bb22472 /include/osmocom | |
parent | 9d7a247da4e20acc6638fcd06198bfe673d0c384 (diff) |
cosmetic apn: correct whitespace error
there is a whitespace between the * and osmo_apn_to_str(). Lets
remove this.
Change-Id: I094e6eb08eacf2d6459c47a7370837601aa92925
Diffstat (limited to 'include/osmocom')
-rw-r--r-- | include/osmocom/gsm/apn.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/gsm/apn.h b/include/osmocom/gsm/apn.h index 8d353248..288b229e 100644 --- a/include/osmocom/gsm/apn.h +++ b/include/osmocom/gsm/apn.h @@ -18,4 +18,4 @@ char *osmo_apn_qualify_from_imsi(const char *imsi, const char *ni, int have_3dig_mnc); int osmo_apn_from_str(uint8_t *apn_enc, size_t max_apn_enc_len, const char *str); -char * osmo_apn_to_str(char *out_str, const uint8_t *apn_enc, size_t apn_enc_len); +char *osmo_apn_to_str(char *out_str, const uint8_t *apn_enc, size_t apn_enc_len); |