Commit d65c6678 authored by Alexandre Julliard's avatar Alexandre Julliard

server: Fix incorrect use of size_t instead of data_size_t.

parent 5c9396d7
......@@ -483,7 +483,7 @@ DECL_HANDLER(get_directory_entry)
struct object *obj = find_object_index( dir->entries, req->index );
if (obj)
{
size_t name_len, type_len = 0;
data_size_t name_len, type_len = 0;
const WCHAR *type_name = NULL;
const WCHAR *name = get_object_name( obj, &name_len );
struct object_type *type = obj->ops->get_type( obj );
......
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