diff options
author | midipix <writeonce@midipix.org> | 2016-05-11 11:58:03 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-14 07:18:25 -0400 |
commit | c713d8d019f7b0f9ed4a60912f440aca991d43c1 (patch) | |
tree | 949b58b49bc5087768cc8dbc3f65513b022ae5c5 /src/vmount | |
parent | a7c8d71acbd60c4b2f3ba63c47eba9c74fa4270d (diff) | |
download | ntapi-c713d8d019f7b0f9ed4a60912f440aca991d43c1.tar.bz2 ntapi-c713d8d019f7b0f9ed4a60912f440aca991d43c1.tar.xz |
code maintenance: mark unused parameters.
Diffstat (limited to 'src/vmount')
-rw-r--r-- | src/vmount/ntapi_vms_cache.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/vmount/ntapi_vms_cache.c b/src/vmount/ntapi_vms_cache.c index 31c09a4..c97ff04 100644 --- a/src/vmount/ntapi_vms_cache.c +++ b/src/vmount/ntapi_vms_cache.c @@ -64,6 +64,10 @@ nt_vms_cache __stdcall __ntapi_vms_cache_alloc( size_t buffer_size; nt_vms_cache_context * vms_cache; + /* unused params */ + (void)flags; + (void)options; + /* status */ if (!status) status = &_status; @@ -185,6 +189,9 @@ int32_t __stdcall __ntapi_vms_cache_record_remove( int32_t status; struct dalist_node_ex * node; + (void)dev_name_hash; + (void)index_number; + status = dalist_get_node_by_key( &cache->cache, &node, |