wineqtdecoder: Fix the spelling of a QTSplitter_loading_thread() variable.

This commit is contained in:
Francois Gouget 2012-06-02 10:35:29 +02:00 committed by Alexandre Julliard
parent cca41207c1
commit 457f722869
1 changed files with 2 additions and 2 deletions

View File

@ -443,12 +443,12 @@ static pascal ComponentResult myDataHGetFileSizeAsync ( DataHandler dh, wide *fi
Handle storage = GetComponentInstanceStorage(dh);
DHData *data = (DHData*)*storage;
LONGLONG total;
LONGLONG avaliable;
LONGLONG available;
SInt64 total64;
TRACE("%p\n",dh);
IAsyncReader_Length(data->dataRef.pReader,&total,&avaliable);
IAsyncReader_Length(data->dataRef.pReader,&total,&available);
total64 = total;
*fileSize = SInt64ToWide(total64);