diff options
author | Jim Meyering <jim@meyering.net> | 2009-11-19 11:41:50 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-11-19 10:44:56 +0000 |
commit | 60d020d363ec49a547fe047ac2f9bd88c8efcd5c (patch) | |
tree | 0467fdba00b9fee9683ff10f87dc31c0b8dd47c8 /fuse | |
parent | f4619c24e2a5cceaf030ee015a5c005b5a84280c (diff) | |
download | libguestfs-60d020d363ec49a547fe047ac2f9bd88c8efcd5c.tar.gz libguestfs-60d020d363ec49a547fe047ac2f9bd88c8efcd5c.tar.xz libguestfs-60d020d363ec49a547fe047ac2f9bd88c8efcd5c.zip |
syntax-check: expand TABs in generator.ml
Jim Meyering wrote:
>>From 6f128e90afb055f9899011c4a592eb289e678936 Mon Sep 17 00:00:00 2001
> From: Jim Meyering <meyering@redhat.com>
> Date: Thu, 19 Nov 2009 11:39:10 +0100
> Subject: [PATCH libguestfs] syntax-check: expand TABs in generator.ml
>
> * src/generator.ml: Expand leading TABs to spaces.
That was incomplete.
Please use the following instead.
With it, now, "make syntax-check" now passes once again.
>From 716a30d0b692972aac8fbea1fb7ad3318ab3a0d8 Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering@redhat.com>
Date: Thu, 19 Nov 2009 11:39:10 +0100
Subject: [PATCH libguestfs] syntax-check: expand leading TABs
* src/generator.ml: Expand leading TABs to spaces.
* fuse/test-fuse.sh: Likewise.
Diffstat (limited to 'fuse')
-rwxr-xr-x | fuse/test-fuse.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fuse/test-fuse.sh b/fuse/test-fuse.sh index fffd851f..2b4d0d75 100755 --- a/fuse/test-fuse.sh +++ b/fuse/test-fuse.sh @@ -69,8 +69,8 @@ function cleanup () # you from unmounting it! Hence the need for this loop. count=10 while ! fusermount -u "$mp" && [ $count -gt 0 ]; do - sleep 1 - ((count--)) + sleep 1 + ((count--)) done rm -f "$image" |