Reviewed by NOBODY (build fix).
* platform/gdk/TransferJobManager.cpp:
(WebCore::writeCallback): Changed 'static_cat' to 'static_cast'.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@15132
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-07-01 David Kilzer <ddkilzer@kilzer.net>
+
+ Reviewed by NOBODY (build fix).
+
+ * platform/gdk/TransferJobManager.cpp:
+ (WebCore::writeCallback): Changed 'static_cat' to 'static_cast'.
+
2006-06-30 Mike Emmel <mike.emmel@gmail.com>
Reviewed and worked over a lot by Darin.
TransferJob* job = static_cast<TransferJob*>(obj);
TransferJobInternal* d = job->getInternal();
int totalSize = size * nmemb;
- d->client->receivedData(job, static_cat<char*>ptr, totalSize);
+ d->client->receivedData(job, static_cast<char*>ptr, totalSize);
return totalSize;
}