From: Andre Noll <maan@tuebingen.mpg.de>
Date: Sun, 30 Oct 2016 16:51:50 +0000 (+0100)
Subject: wma_common: Fix typo in log message.
X-Git-Tag: v0.5.7~11^2~5
X-Git-Url: https://git.tuebingen.mpg.de/?a=commitdiff_plain;h=caaccb675a80739e7832ef832dcef0d93e455366;p=paraslash.git

wma_common: Fix typo in log message.
---

diff --git a/wma_common.c b/wma_common.c
index 8886a061..88873c95 100644
--- a/wma_common.c
+++ b/wma_common.c
@@ -107,7 +107,7 @@ int read_asf_header(const char *buf, int loaded, struct asf_header_info *ahi)
 
 	ahi->flags1 = read_u32(start + 56);
 	ahi->flags2 = read_u16(start + 60);
-	PARA_INFO_LOG("read_asf_header: flags1: %d, flag2: %d\n",
+	PARA_INFO_LOG("read_asf_header: flags1: %d, flags2: %d\n",
 		ahi->flags1, ahi->flags2);
 	ahi->use_exp_vlc = ahi->flags2 & 0x0001;
 	ahi->use_bit_reservoir = ahi->flags2 & 0x0002;