use the shorthand for vidx ...
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Tue, 10 Apr 2007 05:41:50 +0000 (05:41 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Tue, 10 Apr 2007 05:41:50 +0000 (05:41 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@1031 a5681a0c-68f1-0310-ab6d-d61299d08faa

src/rrd_graph.c

index cb95dd8..a23fb10 100644 (file)
@@ -1367,13 +1367,13 @@ print_calc(image_desc_t *im, char ***prdata)
            break;
        case GF_HRULE:
             if(isnan(im->gdes[i].yrule)) { /* we must set this here or the legend printer can not decide to print the legend */
-               im->gdes[i].yrule=im->gdes[im->gdes[i].vidx].vf.val;
+               im->gdes[i].yrule=im->gdes[vidx].vf.val;
             };
            graphelement = 1;
            break;
        case GF_VRULE:
             if(im->gdes[i].xrule == 0) { /* again ... the legend printer needs it*/
-              im->gdes[i].xrule = im->gdes[im->gdes[i].vidx].vf.when;
+              im->gdes[i].xrule = im->gdes[vidx].vf.when;
             };
            graphelement = 1;
            break;