From e32cb81d24c61e968bcf831deb77169b75cccb99 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Sun, 1 Apr 2001 12:18:20 +0000 Subject: Add spaces around operators. It's OK, the Project and afford them now -- they aren't as expensive as they used to be. --- lib/libdisk/blocks.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/libdisk/blocks.c') diff --git a/lib/libdisk/blocks.c b/lib/libdisk/blocks.c index 28e6a5f44e13e..38e2846a473b9 100644 --- a/lib/libdisk/blocks.c +++ b/lib/libdisk/blocks.c @@ -22,11 +22,11 @@ read_block(int fd, daddr_t block) foo = malloc(512); if (!foo) - barfout(1,"malloc"); + barfout(1, "malloc"); if (-1 == lseek(fd, (off_t)block * 512, SEEK_SET)) barfout(1, "lseek"); - if (512 != read(fd,foo, 512)) - barfout(1,"read"); + if (512 != read(fd, foo, 512)) + barfout(1, "read"); return foo; } @@ -36,5 +36,5 @@ write_block(int fd, daddr_t block, void *foo) if (-1 == lseek(fd, (off_t)block * 512, SEEK_SET)) barfout(1, "lseek"); if (512 != write(fd,foo, 512)) - barfout(1,"write"); + barfout(1, "write"); } -- cgit v1.3