aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-06-25 15:37:28 +0000
committerRob Landley <rob@landley.net>2006-06-25 15:37:28 +0000
commita892bf82840423f680bba65c0e679657b0dd347f (patch)
treee140649aef68d124bb9bf2d0307bc4ccea75912b
parent934da82913f70ea3c68bcbcd7b184be54c2c2061 (diff)
downloadbusybox-w32-a892bf82840423f680bba65c0e679657b0dd347f.tar.gz
busybox-w32-a892bf82840423f680bba65c0e679657b0dd347f.tar.bz2
busybox-w32-a892bf82840423f680bba65c0e679657b0dd347f.zip
Whitespace. (Vim's auto-indent is kind of annoying at times, like "daytime"
and "nighttime"...)
-rw-r--r--libbb/loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/loop.c b/libbb/loop.c
index e5b21642e..5d06116e8 100644
--- a/libbb/loop.c
+++ b/libbb/loop.c
@@ -119,7 +119,7 @@ int set_loop(char **device, const char *file, int offset)
119 loopinfo.lo_offset = offset; 119 loopinfo.lo_offset = offset;
120 /* Associate free loop device with file. */ 120 /* Associate free loop device with file. */
121 if(!ioctl(dfd, LOOP_SET_FD, ffd)) { 121 if(!ioctl(dfd, LOOP_SET_FD, ffd)) {
122 if (!ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo)) rc=0; 122 if (!ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo)) rc=0;
123 else ioctl(dfd, LOOP_CLR_FD, 0); 123 else ioctl(dfd, LOOP_CLR_FD, 0);
124 } 124 }
125 125