summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-11-19 16:59:56 +0000
committerRichard Jones <rjones@redhat.com>2009-11-19 16:59:56 +0000
commit986541c26ddeec7583cfb41412d4edaef60703a2 (patch)
tree23cc9970a218ad37e9b6097ce95ad3b7df35bd79
parentb7423df56e12180df27dfc033ed2e4eae1f0175c (diff)
downloadlibguestfs-986541c26ddeec7583cfb41412d4edaef60703a2.tar.gz
libguestfs-986541c26ddeec7583cfb41412d4edaef60703a2.tar.xz
libguestfs-986541c26ddeec7583cfb41412d4edaef60703a2.zip
syntax-check: Fix tab-vs-space issue in the generator.
-rwxr-xr-xsrc/generator.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/generator.ml b/src/generator.ml
index e3584ccc..4bf5aec5 100755
--- a/src/generator.ml
+++ b/src/generator.ml
@@ -10188,15 +10188,15 @@ let () =
try Unix.openfile "HACKING" [Unix.O_RDWR] 0
with
| Unix.Unix_error (Unix.ENOENT, _, _) ->
- eprintf "\
+ eprintf "\
You are probably running this from the wrong directory.
Run it from the top source directory using the command
src/generator.ml
";
- exit 1
+ exit 1
| exn ->
- perror "open: HACKING" exn;
- exit 1 in
+ perror "open: HACKING" exn;
+ exit 1 in
(* Acquire a lock so parallel builds won't try to run the generator
* twice at the same time. Subsequent builds will wait for the first