Commit 0d7fef63 authored by Mikhail Maroukhine's avatar Mikhail Maroukhine Committed by Alexandre Julliard

server: Fix compiler warning with flag -Wcast-qual.

parent 6e5dfd1f
...@@ -647,7 +647,7 @@ DECL_HANDLER(queue_exception_event) ...@@ -647,7 +647,7 @@ DECL_HANDLER(queue_exception_event)
if ((event = alloc_debug_event( current, EXCEPTION_DEBUG_EVENT, &data ))) if ((event = alloc_debug_event( current, EXCEPTION_DEBUG_EVENT, &data )))
{ {
const context_t *context = (const context_t *)((char *)get_req_data() + req->len); const context_t *context = (const context_t *)((const char *)get_req_data() + req->len);
data_size_t size = get_req_data_size() - req->len; data_size_t size = get_req_data_size() - req->len;
memset( &event->context, 0, sizeof(event->context) ); memset( &event->context, 0, sizeof(event->context) );
......
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