diff options
author | Max <msuraev@sysmocom.de> | 2017-10-24 18:18:55 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2017-10-24 16:34:41 +0000 |
commit | cbf5cdfe7eb10e6efee16cbd6b5e7b910f8c47a7 (patch) | |
tree | 0d71b07ceb4ce87141919959a2784d5ce264eb89 /include | |
parent | 296511befc8d5050dc5fe0d8497b4a7acb7ce8c5 (diff) |
GPRS: constify NS printing routine parameters
Change-Id: I549ab7c26ac1489e01f281594bafe44b0681dc83
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/gprs/gprs_ns.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/gprs/gprs_ns.h b/include/osmocom/gprs/gprs_ns.h index 4fb9f584..b368ad99 100644 --- a/include/osmocom/gprs/gprs_ns.h +++ b/include/osmocom/gprs/gprs_ns.h @@ -194,7 +194,7 @@ int gprs_nsvc_reset(struct gprs_nsvc *nsvc, uint8_t cause); int gprs_ns_vty_init(struct gprs_ns_inst *nsi); /* Resturn peer info as string (NOTE: the buffer is allocated statically) */ -const char *gprs_ns_ll_str(struct gprs_nsvc *nsvc); +const char *gprs_ns_ll_str(const struct gprs_nsvc *nsvc); /* Copy the link layer info from other into nsvc */ void gprs_ns_ll_copy(struct gprs_nsvc *nsvc, struct gprs_nsvc *other); |