server: Fix incorrect use of size_t instead of data_size_t.

This commit is contained in:
Alexandre Julliard 2007-12-07 18:42:48 +01:00
parent 5c9396d734
commit d65c667817
1 changed files with 1 additions and 1 deletions

View File

@ -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 );