aboutsummaryrefslogtreecommitdiff
path: root/src/libventi/log.c
diff options
context:
space:
mode:
authorDan Cross <cross@gajendra.net>2020-01-10 14:44:21 +0000
committerDan Cross <cross@gajendra.net>2020-01-10 14:54:30 +0000
commitfa325e9b42b0bdfb48857d1958d9fb7ceac55151 (patch)
tree81d26256d152435135bcb1ae43121979a49f5f2b /src/libventi/log.c
parent77a0a5b5194d4441c86de097f2aae297cb75e2c2 (diff)
downloadplan9port-fa325e9b42b0bdfb48857d1958d9fb7ceac55151.tar.gz
plan9port-fa325e9b42b0bdfb48857d1958d9fb7ceac55151.tar.bz2
plan9port-fa325e9b42b0bdfb48857d1958d9fb7ceac55151.zip
Trivial changes: whitespace and modes.
Remote whitespace at the ends of lines. Remove blank lines from the ends of files. Change modes on source files so that they are not executable. Signed-off-by: Dan Cross <cross@gajendra.net>
Diffstat (limited to 'src/libventi/log.c')
-rw-r--r--src/libventi/log.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/libventi/log.c b/src/libventi/log.c
index 0d67a98b..a6738c7a 100644
--- a/src/libventi/log.c
+++ b/src/libventi/log.c
@@ -36,7 +36,7 @@ vtlognames(int *pn)
int i, nname, size;
VtLog *l;
char **s, *a, *e;
-
+
qlock(&vl.lk);
size = 0;
nname = 0;
@@ -45,7 +45,7 @@ vtlognames(int *pn)
nname++;
size += strlen(l->name)+1;
}
-
+
s = vtmalloc(nname*sizeof(char*)+size);
a = (char*)(s+nname);
e = (char*)s+nname*sizeof(char*)+size;
@@ -111,12 +111,12 @@ vtlogopen(char *name, uint size)
}
strcpy(p, name);
l->name = p;
-
+
/* insert */
l->next = vl.hash[h];
vl.hash[h] = l;
l->ref++;
-
+
l->ref++;
qunlock(&vl.lk);
return l;
@@ -192,10 +192,10 @@ void
vtlogprint(VtLog *l, char *fmt, ...)
{
va_list arg;
-
+
if(l == nil)
return;
-
+
va_start(arg, fmt);
vtlogvprint(l, fmt, arg);
va_end(arg);
@@ -224,7 +224,7 @@ vtlogdump(int fd, VtLog *l)
if(l == nil)
return;
-
+
c = l->w;
for(i=0; i<l->nchunk; i++){
if(++c == l->chunk+l->nchunk)
@@ -232,4 +232,3 @@ vtlogdump(int fd, VtLog *l)
write(fd, c->p, c->wp-c->p);
}
}
-