From a57cdc84e2f38ea99fd464d8b5b6446c769cc545 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Wed, 23 Jan 2019 08:56:40 +0100 Subject: Switch to autotools (#316) --- src/pulse.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/pulse.c') diff --git a/src/pulse.c b/src/pulse.c index 9e278c5..b733f98 100644 --- a/src/pulse.c +++ b/src/pulse.c @@ -1,4 +1,5 @@ // vim:ts=4:sw=4:expandtab +#include #include #include #include @@ -310,7 +311,7 @@ bool pulse_initialize(void) { pa_proplist *proplist = pa_proplist_new(); pa_proplist_sets(proplist, PA_PROP_APPLICATION_NAME, APP_NAME); pa_proplist_sets(proplist, PA_PROP_APPLICATION_ID, APP_ID); - pa_proplist_sets(proplist, PA_PROP_APPLICATION_VERSION, VERSION); + pa_proplist_sets(proplist, PA_PROP_APPLICATION_VERSION, I3STATUS_VERSION); context = pa_context_new_with_proplist(api, APP_NAME, proplist); pa_proplist_free(proplist); if (!context) -- cgit v1.2.3