nmeter: tiny shrink

This commit is contained in:
Denis Vlasenko 2008-06-30 07:33:52 +00:00
parent 0db2c2eb71
commit bc2fd37227

View File

@ -132,11 +132,10 @@ static void readfile_z(char *buf, int sz, const char* fname)
int fd = xopen(fname, O_RDONLY);
buf[0] = '\0';
if (fd >= 0) {
sz = read(fd, buf, sz-1);
if (sz > 0) buf[sz] = '\0';
close(fd);
}
sz = read(fd, buf, sz - 1);
if (sz > 0)
buf[sz] = '\0';
close(fd);
}
static const char* get_file(proc_file *pf)