Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Correct redefined fnfErr type
https://bugs.webkit.org/show_bug.cgi?id=183728 <rdar://problem/38590063> Reviewed by Dan Bernstein. * platform/network/cf/FormDataStreamCFNet.cpp: CFStreamError's error parameter takes a SInt32, not an int. Make sure our redefinition has a compatible type. Canonical link: https://commits.webkit.org/199367@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@229700 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
13 additions
and 1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -43,7 +43,7 @@ | ||
#include <wtf/Threading.h> | ||
|
||
#if PLATFORM(IOS) | ||
static const SInt32 fnfErr = -43; | ||
#elif PLATFORM(MAC) | ||
#include <CoreServices/CoreServices.h> | ||
#endif | ||