[misc] fix spelling mistakes

* Closes #147
This commit is contained in:
Josh Soref 2013-06-20 10:41:22 -04:00 committed by Pete Batard
parent f8c6903d21
commit fe3b1eb6f6
12 changed files with 39 additions and 39 deletions

View file

@ -314,7 +314,7 @@ BOOL DownloadFile(const char* url, const char* file, HWND hProgressDialog)
HttpQueryInfoA(hRequest, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_NUMBER, (LPVOID)&dwStatus, &dwSize, NULL);
if (dwStatus != 200) {
error_code = ERROR_INTERNET_ITEM_NOT_FOUND;
uprintf("Unable to acess file: Server status %d\n", dwStatus);
uprintf("Unable to access file: Server status %d\n", dwStatus);
goto out;
}
dwSize = sizeof(dwTotalSize);