summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAhmad Alawneh <[email protected]>2023-06-06 22:14:24 -0400
committerAhmad Alawneh <[email protected]>2023-06-12 20:31:30 -0400
commitce5c443efa2ec72b7d7b88210eea71db89b29c89 (patch)
treeda541fb57a7fb5bdebca37bb514de6816c88e798 /src
parentb471b3481b2399222ffd9ee0f007628834e68767 (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.h2
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;