From: oetiker Date: Thu, 6 Sep 2007 09:06:04 +0000 (+0000) Subject: added missing ; X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0a2b81d62a6de6621f6d5c1855191f63a0191dad;p=rrdtool-all.git added missing ; git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@1199 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/program/src/rrd_open.c b/program/src/rrd_open.c index b9885aa5..4ee68a67 100644 --- a/program/src/rrd_open.c +++ b/program/src/rrd_open.c @@ -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 */