tStyle fix - dedup - deduplicating backup program
(HTM) git clone git://git.z3bra.org/dedup.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit a418e1982015c28bdca5d2ea67976c0e40f053ac
(DIR) parent 1d2884eaed1369060c8fa872fc15b0c4dfefa090
(HTM) Author: sin <sin@2f30.org>
Date: Tue, 14 May 2019 14:28:08 +0300
Style fix
Diffstat:
M dup-check.c | 2 +-
M dup-pack.c | 2 +-
M dup-rm.c | 2 +-
M dup-unpack.c | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
---
(DIR) diff --git a/dup-check.c b/dup-check.c
t@@ -132,7 +132,7 @@ main(int argc, char *argv[])
if (sopen(spath, S_READ, 0600, &sctx) < 0)
printerr("sopen: %s", spath);
- if (bopen(bpath, B_READ, 0600, &bctx) <0)
+ if (bopen(bpath, B_READ, 0600, &bctx) < 0)
printerr("bopen: %s", bpath);
check(sctx, bctx);
(DIR) diff --git a/dup-pack.c b/dup-pack.c
t@@ -133,7 +133,7 @@ main(int argc, char *argv[])
if (screat(spath, 0600, &sctx) < 0)
printerr("screat: %s", spath);
- if (bopen(bpath, B_RDWR, 0600, &bctx) <0)
+ if (bopen(bpath, B_RDWR, 0600, &bctx) < 0)
printerr("bopen: %s", bpath);
pack(sctx, bctx);
(DIR) diff --git a/dup-rm.c b/dup-rm.c
t@@ -121,7 +121,7 @@ main(int argc, char *argv[])
if (sopen(spath, S_READ, 0600, &sctx) < 0)
printerr("sopen: %s", spath);
- if (bopen(bpath, B_RDWR, 0600, &bctx) <0)
+ if (bopen(bpath, B_RDWR, 0600, &bctx) < 0)
printerr("bopen: %s", bpath);
rm(sctx, bctx);
(DIR) diff --git a/dup-unpack.c b/dup-unpack.c
t@@ -130,7 +130,7 @@ main(int argc, char *argv[])
if (sopen(spath, S_READ, 0600, &sctx) < 0)
printerr("sopen: %s", spath);
- if (bopen(bpath, B_READ, 0600, &bctx) <0)
+ if (bopen(bpath, B_READ, 0600, &bctx) < 0)
printerr("bopen: %s", bpath);
unpack(sctx, bctx);