From aa0778dc4ea437cd902738eed9de1f6d185cd398 Mon Sep 17 00:00:00 2001 From: Ryan Stecker Date: Sun, 4 Mar 2012 15:03:01 -0600 Subject: [PATCH] Fixed small compilation issue. --- DepotDownloader/ContentDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index 3631bf66..b8c5b1b4 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -575,7 +575,7 @@ namespace DepotDownloader string chunkID = EncodeHexString(chunk.ChunkID); byte[] encrypted_chunk = cdnClient.DownloadDepotChunk(depotId, chunkID); - byte[] chunk_data = cdnClient.ProcessChunk(encrypted_chunk, depotKey); + byte[] chunk_data = CDNClient.ProcessChunk(encrypted_chunk, depotKey); fs.Seek((long)chunk.Offset, SeekOrigin.Begin); fs.Write(chunk_data, 0, chunk_data.Length);