context: pa_context_get_server: constify
authorLyndon Brown <jnqnfe@gmail.com>
Thu, 7 Jun 2018 02:55:42 +0000 (03:55 +0100)
committerTanu Kaskinen <tanuk@iki.fi>
Tue, 26 Jun 2018 08:42:00 +0000 (11:42 +0300)
src/pulse/context.c
src/pulse/context.h

index 86738ed..96193bd 100644 (file)
@@ -1319,7 +1319,7 @@ const char* pa_get_library_version(void) {
     return pa_get_headers_version();
 }
 
-const char* pa_context_get_server(pa_context *c) {
+const char* pa_context_get_server(const pa_context *c) {
     pa_assert(c);
     pa_assert(PA_REFCNT_VALUE(c) >= 1);
 
index 4bf1872..1197a2e 100644 (file)
@@ -233,7 +233,7 @@ int pa_context_is_local(const pa_context *c);
 pa_operation* pa_context_set_name(pa_context *c, const char *name, pa_context_success_cb_t cb, void *userdata);
 
 /** Return the server name this context is connected to. */
-const char* pa_context_get_server(pa_context *c);
+const char* pa_context_get_server(const pa_context *c);
 
 /** Return the protocol version of the library. */
 uint32_t pa_context_get_protocol_version(const pa_context *c);