From 0ef7e5cb4c22bd8b781cb2a2e790612a8f72e00f Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Tue, 16 Aug 2011 15:21:45 +0530 Subject: [PATCH] format: Remove stupid copy-paste-o Thanks to Maarten Bosmans for the catch. --- src/pulse/format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pulse/format.c b/src/pulse/format.c index f4eed8366..eee3b54dc 100644 --- a/src/pulse/format.c +++ b/src/pulse/format.c @@ -330,7 +330,7 @@ pa_bool_t pa_format_info_get_prop_string(pa_format_info *f, const char *key, cha pa_assert(key); pa_assert(v); - str = pa_proplist_gets(f->plist, key), FALSE; + str = pa_proplist_gets(f->plist, key); if (!str) return FALSE;