added missing ;
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Thu, 6 Sep 2007 09:06:04 +0000 (09:06 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Thu, 6 Sep 2007 09:06:04 +0000 (09:06 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1199 a5681a0c-68f1-0310-ab6d-d61299d08faa

src/rrd_open.c

index b9885aa..4ee68a6 100644 (file)
@@ -480,7 +480,7 @@ inline ssize_t rrd_write(
     if (count == 0)
        return 0;
     if (buf == NULL)
-       return -1 /* EINVAL */
+       return -1; /* EINVAL */
     memcpy(rrd_file->file_start + rrd_file->pos, buf, count);
     rrd_file->pos += count;
     return count;       /* mimmic write() semantics */