Commit 9fc48b28 authored by Alexandre Julliard's avatar Alexandre Julliard

server: Fix the string type in traces for I/O completion names.

parent 0cce9200
...@@ -4845,7 +4845,7 @@ struct create_completion_request ...@@ -4845,7 +4845,7 @@ struct create_completion_request
unsigned int attributes; unsigned int attributes;
unsigned int concurrent; unsigned int concurrent;
obj_handle_t rootdir; obj_handle_t rootdir;
/* VARARG(filename,string); */ /* VARARG(filename,unicode_str); */
char __pad_28[4]; char __pad_28[4];
}; };
struct create_completion_reply struct create_completion_reply
...@@ -4863,7 +4863,7 @@ struct open_completion_request ...@@ -4863,7 +4863,7 @@ struct open_completion_request
unsigned int access; unsigned int access;
unsigned int attributes; unsigned int attributes;
obj_handle_t rootdir; obj_handle_t rootdir;
/* VARARG(filename,string); */ /* VARARG(filename,unicode_str); */
}; };
struct open_completion_reply struct open_completion_reply
{ {
......
...@@ -3366,7 +3366,7 @@ enum coords_relative ...@@ -3366,7 +3366,7 @@ enum coords_relative
unsigned int attributes; /* object attributes */ unsigned int attributes; /* object attributes */
unsigned int concurrent; /* max number of concurrent active threads */ unsigned int concurrent; /* max number of concurrent active threads */
obj_handle_t rootdir; /* root directory */ obj_handle_t rootdir; /* root directory */
VARARG(filename,string); /* port name */ VARARG(filename,unicode_str); /* port name */
@REPLY @REPLY
obj_handle_t handle; /* port handle */ obj_handle_t handle; /* port handle */
@END @END
...@@ -3377,7 +3377,7 @@ enum coords_relative ...@@ -3377,7 +3377,7 @@ enum coords_relative
unsigned int access; /* desired access to a port */ unsigned int access; /* desired access to a port */
unsigned int attributes; /* object attributes */ unsigned int attributes; /* object attributes */
obj_handle_t rootdir; /* root directory */ obj_handle_t rootdir; /* root directory */
VARARG(filename,string); /* port name */ VARARG(filename,unicode_str); /* port name */
@REPLY @REPLY
obj_handle_t handle; /* port handle */ obj_handle_t handle; /* port handle */
@END @END
......
...@@ -3951,7 +3951,7 @@ static void dump_create_completion_request( const struct create_completion_reque ...@@ -3951,7 +3951,7 @@ static void dump_create_completion_request( const struct create_completion_reque
fprintf( stderr, ", attributes=%08x", req->attributes ); fprintf( stderr, ", attributes=%08x", req->attributes );
fprintf( stderr, ", concurrent=%08x", req->concurrent ); fprintf( stderr, ", concurrent=%08x", req->concurrent );
fprintf( stderr, ", rootdir=%04x", req->rootdir ); fprintf( stderr, ", rootdir=%04x", req->rootdir );
dump_varargs_string( ", filename=", cur_size ); dump_varargs_unicode_str( ", filename=", cur_size );
} }
static void dump_create_completion_reply( const struct create_completion_reply *req ) static void dump_create_completion_reply( const struct create_completion_reply *req )
...@@ -3964,7 +3964,7 @@ static void dump_open_completion_request( const struct open_completion_request * ...@@ -3964,7 +3964,7 @@ static void dump_open_completion_request( const struct open_completion_request *
fprintf( stderr, " access=%08x", req->access ); fprintf( stderr, " access=%08x", req->access );
fprintf( stderr, ", attributes=%08x", req->attributes ); fprintf( stderr, ", attributes=%08x", req->attributes );
fprintf( stderr, ", rootdir=%04x", req->rootdir ); fprintf( stderr, ", rootdir=%04x", req->rootdir );
dump_varargs_string( ", filename=", cur_size ); dump_varargs_unicode_str( ", filename=", cur_size );
} }
static void dump_open_completion_reply( const struct open_completion_reply *req ) static void dump_open_completion_reply( const struct open_completion_reply *req )
......
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