<div dir="ltr"><div class="gmail_default" style="font-family:tahoma,sans-serif">From a2b936b3140ca028ec192ae662b64395a3d1d04b Mon Sep 17 00:00:00 2001<br>From: Min Chen <<a href="mailto:chenm003@163.com">chenm003@163.com</a>><br>Date: Sun, 17 Nov 2024 21:43:03 -0800<br>Subject: [PATCH] Fix conversion warning on strPoolSize<br><br>---<br> source/x265.cpp | 2 +-<br> 1 file changed, 1 insertion(+), 1 deletion(-)<br><br>diff --git a/source/x265.cpp b/source/x265.cpp<br>index 357f5d6ea..110f44b63 100644<br>--- a/source/x265.cpp<br>+++ b/source/x265.cpp<br>@@ -207,7 +207,7 @@ static bool parseAbrConfig(FILE* abrConfig, CLIOptions cliopt[], uint8_t numEnco<br>         {<br>             argv[argc] = strPool;<br>             strPool += strlen(token) + 1;<br>-            strPoolSize -= strlen(token) + 1;<br>+            strPoolSize -= (int)strlen(token) + 1;<br>             strcpy(argv[argc], token);<br>             token = strtok(NULL, " ");<br>             argc++;<br>-- <br>2.41.0.windows.1<br><br></div></div>