Skip to content

Commit

Permalink
one more copypasta
Browse files Browse the repository at this point in the history
  • Loading branch information
mkst committed Oct 17, 2023
1 parent 3f602bc commit 1a585d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dll/kernel32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2040,7 +2040,7 @@ namespace kernel32 {
}

unsigned int WIN_FUNC FlsSetValue(unsigned int dwFlsIndex, void *lpFlsData) {
// DEBUG_LOG("FlsSetValue(%u, %p)\n", dwFlsIndex, lpFlsValue);
// DEBUG_LOG("FlsSetValue(%u, %p)\n", dwFlsIndex, lpFlsData);
if (dwFlsIndex >= 0 && dwFlsIndex < MAX_FLS_VALUES && flsValuesUsed[dwFlsIndex]) {
flsValues[dwFlsIndex] = lpFlsData;
return 1;
Expand Down

0 comments on commit 1a585d8

Please sign in to comment.