mainloop: constify get_retval functions

This commit is contained in:
Lyndon Brown 2018-05-27 06:39:11 +01:00 committed by Arun Raghavan
parent 277c3735df
commit 9b5077c468
4 changed files with 4 additions and 4 deletions

View file

@ -910,7 +910,7 @@ quit:
return -2;
}
int pa_mainloop_get_retval(pa_mainloop *m) {
int pa_mainloop_get_retval(const pa_mainloop *m) {
pa_assert(m);
return m->retval;