Commit 47651766 authored by Sergey Lyubka's avatar Sergey Lyubka

Squashed warning under linux

parent 043ea54a
...@@ -526,7 +526,7 @@ static int is_file_in_memory(struct mg_connection *conn, const char *path, ...@@ -526,7 +526,7 @@ static int is_file_in_memory(struct mg_connection *conn, const char *path,
struct file *filep) { struct file *filep) {
conn->request_info.ev_data = (void *) path; conn->request_info.ev_data = (void *) path;
if ((filep->membuf = call_user(conn, MG_OPEN_FILE)) != NULL) { if ((filep->membuf = call_user(conn, MG_OPEN_FILE)) != NULL) {
filep->size = (int) conn->request_info.ev_data; filep->size = (int) (long) conn->request_info.ev_data;
} }
return filep->membuf != NULL; return filep->membuf != NULL;
} }
...@@ -922,7 +922,7 @@ static void send_http_error(struct mg_connection *conn, int status, ...@@ -922,7 +922,7 @@ static void send_http_error(struct mg_connection *conn, int status,
int len; int len;
conn->status_code = status; conn->status_code = status;
conn->request_info.ev_data = (void *) status; conn->request_info.ev_data = (void *) (long) status;
if (call_user(conn, MG_HTTP_ERROR) == NULL) { if (call_user(conn, MG_HTTP_ERROR) == NULL) {
buf[0] = '\0'; buf[0] = '\0';
len = 0; len = 0;
......
...@@ -67,7 +67,7 @@ enum mg_event { ...@@ -67,7 +67,7 @@ enum mg_event {
// HTTP error must be returned to the client. // HTTP error must be returned to the client.
// If callback returns non-NULL, Mongoose stops handling error. // If callback returns non-NULL, Mongoose stops handling error.
// ev_data contains HTTP error code: // ev_data contains HTTP error code:
// int http_reply_status_code = (int) request_info->ev_data; // int http_reply_status_code = (long) request_info->ev_data;
MG_HTTP_ERROR, MG_HTTP_ERROR,
// Mongoose logs a message. // Mongoose logs a message.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment