Skip to content

Commit

Permalink
Merge pull request microsoft#263 from tlqaksqhr/master
Browse files Browse the repository at this point in the history
Typo fixed : RtRemvoeKeyFromVaHashTable -> RtRemoveKeyFromVaHashtable
  • Loading branch information
NeoAdonis authored Jul 19, 2018
2 parents e0d4c38 + c0bdadd commit 84a856e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion network/wlan/WDI/COMMON/HashTable.c
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ RtFreeHashTable(
// Remove value object of specified key from hash table.
//
void
RtRemvoeKeyFromVaHashTable(
RtRemoveKeyFromVaHashTable(
IN RT_HASH_TABLE_HANDLE hHashTable,
IN RT_HASH_KEY Key
)
Expand Down
2 changes: 1 addition & 1 deletion network/wlan/WDI/COMMON/QosGen.c
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,7 @@ QosRemoveTs(
u1Byte Key[QOS_TSTREAM_KEY_SIZE];

PlatformMoveMemory(Key, pTs->__HashEntry.Key, QOS_TSTREAM_KEY_SIZE);
RtRemvoeKeyFromVaHashTable(pStaQos->hApTsTable, Key);
RtRemoveKeyFromVaHashTable(pStaQos->hApTsTable, Key);
}

}
Expand Down
2 changes: 1 addition & 1 deletion network/wlan/WDI/HEADER/HashTable.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ RtPutKeyToHashTable(
);

void
RtRemvoeKeyFromVaHashTable(
RtRemoveKeyFromVaHashTable(
IN RT_HASH_TABLE_HANDLE hHashTable,
IN RT_HASH_KEY Key
);
Expand Down

0 comments on commit 84a856e

Please sign in to comment.