Title: [165647] trunk/Source/WebKit2
Revision
165647
Author
commit-qu...@webkit.org
Date
2014-03-14 14:18:30 -0700 (Fri, 14 Mar 2014)

Log Message

Use the correct type in webkitSoupRequestInputStreamNew()'s declaration.
Nhttps://bugs.webkit.org/show_bug.cgi?id=129974

Patch by Landry Breuil <lan...@openbsd.org> on 2014-03-14
Reviewed by Andreas Kling.

* WebProcess/soup/WebKitSoupRequestInputStream.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (165646 => 165647)


--- trunk/Source/WebKit2/ChangeLog	2014-03-14 21:09:47 UTC (rev 165646)
+++ trunk/Source/WebKit2/ChangeLog	2014-03-14 21:18:30 UTC (rev 165647)
@@ -1,3 +1,12 @@
+2014-03-14  Landry Breuil  <lan...@openbsd.org>
+
+        Use the correct type in webkitSoupRequestInputStreamNew()'s declaration.
+        Nhttps://bugs.webkit.org/show_bug.cgi?id=129974
+
+        Reviewed by Andreas Kling.
+
+        * WebProcess/soup/WebKitSoupRequestInputStream.h:
+
 2014-03-14  Anders Carlsson  <ander...@apple.com>
 
         Fix crash when resizing the visited link table

Modified: trunk/Source/WebKit2/WebProcess/soup/WebKitSoupRequestInputStream.h (165646 => 165647)


--- trunk/Source/WebKit2/WebProcess/soup/WebKitSoupRequestInputStream.h	2014-03-14 21:09:47 UTC (rev 165646)
+++ trunk/Source/WebKit2/WebProcess/soup/WebKitSoupRequestInputStream.h	2014-03-14 21:18:30 UTC (rev 165647)
@@ -46,7 +46,7 @@
 };
 
 GType webkit_soup_request_input_stream_get_type();
-GInputStream* webkitSoupRequestInputStreamNew(guint64 contentLength);
+GInputStream* webkitSoupRequestInputStreamNew(uint64_t contentLength);
 void webkitSoupRequestInputStreamAddData(WebKitSoupRequestInputStream*, const void* data, size_t dataLength);
 bool webkitSoupRequestInputStreamFinished(WebKitSoupRequestInputStream*);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to