X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=blobdiff_plain;f=src%2Frrd_first.c;h=4da1b3aa1f3574c7324edf82b877927c6fb76ac4;hp=82b99f385ef6f5fae0bcaee8bbbb1e2fd1466e91;hb=59d97685e48c93d65b36c68d5f762380c6d1ab4e;hpb=4d7e379201b4cf3dbdad103d691ca7d2724ade2f diff --git a/src/rrd_first.c b/src/rrd_first.c index 82b99f3..4da1b3a 100644 --- a/src/rrd_first.c +++ b/src/rrd_first.c @@ -6,6 +6,7 @@ * Initial version by Burton Strauss, ntopSupport.com - 3/2005 *****************************************************************************/ +#include #include "rrd_tool.h" @@ -81,7 +82,7 @@ time_t rrd_first_r( (rra_start + (rrd.rra_ptr[rraindex].cur_row + 1) * rrd.stat_head->ds_cnt * sizeof(rrd_value_t)), SEEK_SET); - timer = -(rrd.rra_def[rraindex].row_cnt - 1); + timer = -(long)(rrd.rra_def[rraindex].row_cnt - 1); if (rrd.rra_ptr[rraindex].cur_row + 1 > rrd.rra_def[rraindex].row_cnt) { rrd_seek(rrd_file, rra_start, SEEK_SET); }