aboutsummaryrefslogtreecommitdiffstats
path: root/src/gprs_bssgp_pcu.h
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-06-16 10:18:42 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-06-22 10:39:06 +0200
commit1e50a3dadef7823b6f50bd387f84f324029a217d (patch)
tree1a45f77b8f629a6a984a8d58721030b7a38987c4 /src/gprs_bssgp_pcu.h
parent70b96aa232bd9784a94247bf7b193cb2147ada9d (diff)
llc: Make timeval arguments const
Some struct timeval pointer arguments do not have the const qualifier, albeit the methods do not write to the structures. The next commit will change related pointers to const, so this commit provides the required constness. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/gprs_bssgp_pcu.h')
-rw-r--r--src/gprs_bssgp_pcu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gprs_bssgp_pcu.h b/src/gprs_bssgp_pcu.h
index 32be7650..112a8888 100644
--- a/src/gprs_bssgp_pcu.h
+++ b/src/gprs_bssgp_pcu.h
@@ -83,7 +83,7 @@ void gprs_bssgp_destroy(void);
struct bssgp_bvc_ctx *gprs_bssgp_pcu_current_bctx(void);
-void gprs_bssgp_update_queue_delay(struct timeval *tv_recv,
- struct timeval *tv_now);
+void gprs_bssgp_update_queue_delay(const struct timeval *tv_recv,
+ const struct timeval *tv_now);
#endif // GPRS_BSSGP_PCU_H