diff options
Diffstat (limited to 'src/ipc')
-rw-r--r-- | src/ipc/ntapi_tt_create_pipe_v1.c | 2 | ||||
-rw-r--r-- | src/ipc/ntapi_tt_create_pipe_v2.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/ipc/ntapi_tt_create_pipe_v1.c b/src/ipc/ntapi_tt_create_pipe_v1.c index a22e839..98a23fa 100644 --- a/src/ipc/ntapi_tt_create_pipe_v1.c +++ b/src/ipc/ntapi_tt_create_pipe_v1.c @@ -59,6 +59,8 @@ int32_t __stdcall __ntapi_ipc_create_pipe_v1( 0 }; + (void)advisory_buffer_size; + /* pipe_count */ counter = (intptr_t *)&__ntapi_internals()->v1_pipe_counter; at_locked_inc(counter); diff --git a/src/ipc/ntapi_tt_create_pipe_v2.c b/src/ipc/ntapi_tt_create_pipe_v2.c index 0fed719..7252bf4 100644 --- a/src/ipc/ntapi_tt_create_pipe_v2.c +++ b/src/ipc/ntapi_tt_create_pipe_v2.c @@ -33,6 +33,8 @@ int32_t __stdcall __ntapi_ipc_create_pipe_v2( '\\','N','a','m','e','d','P','i','p','e','\\',0 }; + (void)advisory_buffer_size; + /* nt_name: pipe device directory */ nt_name.strlen = (uint16_t)(sizeof(pipe_dir) - sizeof(wchar16_t)); nt_name.maxlen = 0; |