summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMike Brady <mikebrady@eircom.net>2018-12-03 10:33:29 +0000
committerMike Brady <mikebrady@eircom.net>2018-12-03 10:33:29 +0000
commit038dee01ba14f2f721f5c6e44796a601ece01870 (patch)
treeb593f7149fb90d353108cb34263984c83de672c1 /configure.ac
parent8c9b1590112e86054c9b68cd9643860ef85c24f0 (diff)
Fix an error caused by using an unsigned integer as a signed number. It may have been causing lots of conversation threads to wait for the (blocked) current playing thread to exit.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ca23c4e..1fda52d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.50])
-AC_INIT([shairport-sync], [3.3d31], [mikebrady@eircom.net])
+AC_INIT([shairport-sync], [3.3d32], [mikebrady@eircom.net])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([shairport.c])
AC_CONFIG_HEADERS([config.h])