diff options
author | Luca Deri <deri@ntop.org> | 2015-05-18 18:29:22 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2015-05-18 18:29:22 +0200 |
commit | 167c83121262c4621b56f1cb3927bf5f8a5f9a69 (patch) | |
tree | a5b5d5e3323e0a4cb1bd2616db708fd24ec00db7 /src/lib/ndpi_main.c | |
parent | fc1efb56ee916a62505c6aedeed3ad57312b5fad (diff) |
Fixed compilation warnings
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 722984953..7719f766e 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -4212,7 +4212,7 @@ unsigned int ndpi_detection_process_packet(struct ndpi_detection_module_struct * flow->packet.tick_timestamp = d; } #else - flow->packet.tick_timestamp = current_tick_l/1000; + flow->packet.tick_timestamp = (u_int32_t)current_tick_l/1000; #endif /* parse packet */ |