Skip to content

Commit

Permalink
make avg_val a long int
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerryliu committed May 28, 2017
1 parent cccbb59 commit 56ae38a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/device.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Device {
int min_val = INT_MAX;
int max_val = INT_MIN;
int tick = 0;
int avg_val = 0;
long int avg_val = 0;
};

const string file_path;
Expand Down

0 comments on commit 56ae38a

Please sign in to comment.