Mercurial > wflogs-daemon
changeset 9:13204eef1a0a
fix missing return statement
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 17 May 2013 12:40:05 -0700 |
parents | 306059d0f677 |
children | f78173fad15f |
files | src/wflogs-config.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/wflogs-config.cpp Fri May 17 12:37:04 2013 -0700 +++ b/src/wflogs-config.cpp Fri May 17 12:40:05 2013 -0700 @@ -128,7 +128,7 @@ // p points to \0 at end of buf, may be destroyed if (failedo()) { openo(false); - if (failedo()) return false; + if (failedo()) return; } *p = '\n'; ::write(fdo, buf, p-buf+1);