X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_restore.c;h=a0ef6359c1e7be1298832687325521feb2b546c1;hb=0dd9e81745110d811a021513843c05fead623b8d;hp=6d7fdf88fbf4a9c37e9ce4a8b924982134d5cada;hpb=afc13fd32fabe48daa7ae358933e3299827e98bb;p=rrdtool.git diff --git a/src/rrd_restore.c b/src/rrd_restore.c index 6d7fdf8..a0ef635 100644 --- a/src/rrd_restore.c +++ b/src/rrd_restore.c @@ -405,11 +405,11 @@ rrd_write(char *file_name, rrd_t *rrd) FILE *rrd_file=NULL; if (strcmp("-",file_name)==0){ - *rrd_file= *stdout; + rrd_file= stdout; } else { int fd = open(file_name,O_RDWR|O_CREAT|O_EXCL,0666); if (fd == -1 || (rrd_file = fdopen(fd,"wb")) == NULL) { - rrd_set_error("creating '%s': %s",file_name,strerror(errno)); + rrd_set_error("creating '%s': %s",file_name,rrd_strerror(errno)); if (fd != -1) close(fd); return(-1); @@ -557,7 +557,7 @@ parse_FAILURES_history(char **buf, rrd_t *rrd, int rra_index, int ds_index) { char history[MAX_FAILURES_WINDOW_LEN + 1]; char *violations_array; - short i; + unsigned short i; /* 28 = MAX_FAILURES_WINDOW_LEN */ read_tag(buf, "history", "%28[0-1]", history);