From 39af304e0cf77a5a049e2fa7a7b91f02e1d08532 Mon Sep 17 00:00:00 2001 From: Alex Kordic Date: Thu, 26 Jan 2023 19:35:43 +0100 Subject: [PATCH] size_t != uint64_t Change-Id: Idf7137a7e385dec6600fe73be5d978af2fde76f0 --- src/output/output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output/output.cpp b/src/output/output.cpp index 9cb4db81..30099c07 100644 --- a/src/output/output.cpp +++ b/src/output/output.cpp @@ -1652,7 +1652,7 @@ namespace Mist{ // If we are appending to an existing playlist, we need to recover the playlistBuffer and reopen the playlist HTTP::URIReader inFile(playlistLocationString); char *newBuffer; - uint64_t bytesRead; + size_t bytesRead; inFile.readAll(newBuffer, bytesRead); playlistBuffer = std::string(newBuffer, bytesRead) + playlistBuffer; // Reinit the playlist with the new targetDuration