diff options
author | Kjell Wooding <kjell@cvs.openbsd.org> | 2006-06-01 05:56:52 +0000 |
---|---|---|
committer | Kjell Wooding <kjell@cvs.openbsd.org> | 2006-06-01 05:56:52 +0000 |
commit | 3d0de147fd10aff7f545a32bebe16b50e0b1d142 (patch) | |
tree | 7241dd9a70978f35d62874edcd365ecb29f825ce /usr.bin/mg | |
parent | 844ef679df7b9fbdec8260527945f6831a486c22 (diff) |
fix style
Diffstat (limited to 'usr.bin/mg')
-rw-r--r-- | usr.bin/mg/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/fileio.c b/usr.bin/mg/fileio.c index d051c0ffc46..a06b30f274f 100644 --- a/usr.bin/mg/fileio.c +++ b/usr.bin/mg/fileio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fileio.c,v 1.74 2006/06/01 05:34:52 jason Exp $ */ +/* $OpenBSD: fileio.c,v 1.75 2006/06/01 05:56:51 kjell Exp $ */ /* This file is in the public domain. */ @@ -248,7 +248,7 @@ adjustname(const char *fn, int slashslash) path[0] = '\0'; - if (slashslash) { + if (slashslash == TRUE) { cp = fn + strlen(fn) - 1; for (; cp >= fn; cp--) { if (ep && (*cp == '/')) { |