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

This commit is contained in:
Mikhail Maroukhine 2010-03-27 12:31:19 +06:00 committed by Alexandre Julliard
parent 6e5dfd1fb8
commit 0d7fef63ea
1 changed files with 1 additions and 1 deletions

View File

@ -647,7 +647,7 @@ DECL_HANDLER(queue_exception_event)
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;
memset( &event->context, 0, sizeof(event->context) );