From 82131293b09a7caa68f857af44e15c90d73c7a4e Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 3 Mar 2021 12:47:56 +0100 Subject: [PATCH] avcodec/float2half: fix minor style issue --- libavcodec/float2half.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/float2half.h b/libavcodec/float2half.h index ff547b490c..e05125088c 100644 --- a/libavcodec/float2half.h +++ b/libavcodec/float2half.h @@ -46,7 +46,7 @@ static void float2half_tables(uint16_t *basetable, uint8_t *shifttable) basetable[i|0x100] = 0xFC00; shifttable[i|0x000] = 24; shifttable[i|0x100] = 24; - } else{ // Infinity and NaN's stay Infinity and NaN's + } else { // Infinity and NaN's stay Infinity and NaN's basetable[i|0x000] = 0x7C00; basetable[i|0x100] = 0xFC00; shifttable[i|0x000] = 13;