summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorwl <wl>2013-02-02 19:09:49 +0000
committerwl <wl>2013-02-02 19:09:49 +0000
commit8eb995c4ddb2380fd38e75db93864ff8b3d76c6b (patch)
tree1825c03639b5ebcbdceb6aa702002c98e4808208 /src
parentdae1d0e512d37d4b0a8c725691f6021bd5d56847 (diff)
downloadgroff-8eb995c4ddb2380fd38e75db93864ff8b3d76c6b.tar.gz
Whitespace.
Diffstat (limited to 'src')
-rw-r--r--src/preproc/html/pushback.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/preproc/html/pushback.cpp b/src/preproc/html/pushback.cpp
index 562669e7..8db30873 100644
--- a/src/preproc/html/pushback.cpp
+++ b/src/preproc/html/pushback.cpp
@@ -71,7 +71,7 @@ pushBackBuffer::pushBackBuffer (char *filename)
lineNo = 1;
if (strcmp(filename, "") != 0) {
stdIn = dup(0);
- if (stdIn<0) {
+ if (stdIn < 0) {
sys_fatal("dup stdin");
}
close(0);
@@ -90,7 +90,7 @@ pushBackBuffer::~pushBackBuffer ()
}
close(0);
/* restore stdin in file descriptor 0 */
- if (dup(stdIn)<0) {
+ if (dup(stdIn) < 0) {
sys_fatal("restore stdin");
}
close(stdIn);