diff options
| author | Ahmad Alawneh <[email protected]> | 2023-06-06 22:14:24 -0400 |
|---|---|---|
| committer | Ahmad Alawneh <[email protected]> | 2023-06-12 20:31:30 -0400 |
| commit | ce5c443efa2ec72b7d7b88210eea71db89b29c89 (patch) | |
| tree | da541fb57a7fb5bdebca37bb514de6816c88e798 /src | |
| parent | b471b3481b2399222ffd9ee0f007628834e68767 (diff) | |
it is safe to to change m_updates to unsgined, the accessor returns unsigned anyway, it should fix warning in done() fun
Diffstat (limited to 'src')
| -rw-r--r-- | src/stream_manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream_manager.h b/src/stream_manager.h index afcbb0e..561f54b 100644 --- a/src/stream_manager.h +++ b/src/stream_manager.h @@ -73,7 +73,7 @@ struct CUevent_st { int m_uid; bool m_blocking; bool m_done; - int m_updates; + unsigned int m_updates; unsigned int m_issued; time_t m_wallclock; double m_gpu_tot_sim_cycle; |
