[frogr] Use the proper cast to gulong (instead of ulong)
- From: Mario Sanchez Prada <msanchez src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [frogr] Use the proper cast to gulong (instead of ulong)
- Date: Sat, 19 Feb 2011 23:10:18 +0000 (UTC)
commit 2f1b9106850bffc7001722f9685d63ad98b594c9
Author: Mario Sanchez Prada <msanchez igalia com>
Date: Sun Feb 20 00:09:51 2011 +0100
Use the proper cast to gulong (instead of ulong)
src/flicksoup/fsp-session.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/flicksoup/fsp-session.c b/src/flicksoup/fsp-session.c
index 57b42a3..9da6702 100644
--- a/src/flicksoup/fsp-session.c
+++ b/src/flicksoup/fsp-session.c
@@ -1024,7 +1024,7 @@ _handle_soup_response (SoupMessage *msg,
g_signal_handlers_disconnect_by_func (msg, _wrote_body_data_cb, clos);
response_str = g_strndup (msg->response_body->data, msg->response_body->length);
- response_len = (ulong) msg->response_body->length;
+ response_len = (gulong) msg->response_body->length;
if (response_str)
DEBUG ("\nResponse got:\n%s\n", response_str);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]