diff options
author | lloyd <[email protected]> | 2008-11-23 19:04:11 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-23 19:04:11 +0000 |
commit | f27fcf05383888d98d2553f678b79bb56f04e402 (patch) | |
tree | 469ff652ce7622dd0086f9a00398db2e5e070bbf /src/entropy | |
parent | 636ae6076487a7448449a9c9be54160c81cd3ac4 (diff) |
Compile fix
Diffstat (limited to 'src/entropy')
-rw-r--r-- | src/entropy/win32_stats/es_win32.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entropy/win32_stats/es_win32.cpp b/src/entropy/win32_stats/es_win32.cpp index 91e0a8eb8..31779bee8 100644 --- a/src/entropy/win32_stats/es_win32.cpp +++ b/src/entropy/win32_stats/es_win32.cpp @@ -55,7 +55,7 @@ u32bit Win32_EntropySource::slow_poll(byte buf[], u32bit length) { do { - buf_i = xor_into_buf(buf, buf_i, length, info, heap_list); + buf_i = xor_into_buf(buf, buf_i, length, heap_list); if(heap_lists_found++ > HEAP_LISTS_MAX) break; @@ -70,7 +70,7 @@ u32bit Win32_EntropySource::slow_poll(byte buf[], u32bit length) { if(heap_objs_found++ > HEAP_OBJS_PER_LIST) break; - buf_i = xor_into_buf(buf, buf_i, length, info, heap_entry); + buf_i = xor_into_buf(buf, buf_i, length, heap_entry); } while(Heap32Next(&heap_entry)); } } while(Heap32ListNext(snapshot, &heap_list)); |