summaryrefslogtreecommitdiff
path: root/third_party/srtp/pjlib/srtp_err.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/srtp/pjlib/srtp_err.c')
-rw-r--r--third_party/srtp/pjlib/srtp_err.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/third_party/srtp/pjlib/srtp_err.c b/third_party/srtp/pjlib/srtp_err.c
index 8a92c56b..bd60ca17 100644
--- a/third_party/srtp/pjlib/srtp_err.c
+++ b/third_party/srtp/pjlib/srtp_err.c
@@ -24,12 +24,13 @@
err_reporting_level_t err_level = err_level_none;
err_status_t
-err_reporting_init(char *ident) {
+err_reporting_init(const char *ident) {
+ PJ_UNUSED_ARG(ident);
return err_status_ok;
}
void
-err_report(int priority, char *format, ...) {
+err_report(int priority, const char *format, ...) {
va_list args;
#if PJ_LOG_MAX_LEVEL >= 1