Skip to content

Commit

Permalink
Merge pull request #111 from alexian79/orbuculum-bitrate-calclulation…
Browse files Browse the repository at this point in the history
…-oveflow

Fix overflow in reporting data transfer rate in orbuculum
  • Loading branch information
mubes authored Jul 29, 2023
2 parents 0fb9493 + 435526f commit b2c216d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/orbuculum.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ struct RunTime
struct TPIUDecoder t; /* TPIU decoder instance, in case we need it */
struct OrbtraceIf *o; /* For accessing ORBTrace devices + BMPs */

long int intervalBytes; /* Number of bytes transferred in current interval */
uint64_t intervalBytes; /* Number of bytes transferred in current interval */

pthread_t intervalThread; /* Thread reporting on intervals */
pthread_t processThread; /* Thread for processing prior to distributing to clients */
Expand Down

0 comments on commit b2c216d

Please sign in to comment.