From 6ba0287e8e61e8d5d3efd675f6107696e96224de Mon Sep 17 00:00:00 2001
From: NeilBrown <neil@brown.name>
Date: Sat, 6 Mar 2021 09:15:06 +1100
Subject: [PATCH] oceani: add missing space in usage message.

Wrapping long strings is a bad idea anyway.

Signed-off-by: NeilBrown <neil@brown.name>
---
 csrc/oceani-tests.mdc | 2 +-
 csrc/oceani.mdc       | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/csrc/oceani-tests.mdc b/csrc/oceani-tests.mdc
index 87a7aa9..54b08d0 100644
--- a/csrc/oceani-tests.mdc
+++ b/csrc/oceani-tests.mdc
@@ -850,7 +850,7 @@ command list possible.
 
 ###### output: cmd,-zyx
 	./oceani: invalid option -- 'z'
-	Usage: oceani --trace --print --noexec --brackets--section=SectionName prog.ocn
+	Usage: oceani --trace --print --noexec --brackets --section=SectionName prog.ocn
 
 ###### output: cmd,nofile
 	oceani: cannot open nofile
diff --git a/csrc/oceani.mdc b/csrc/oceani.mdc
index ab6abe9..fc2aaef 100644
--- a/csrc/oceani.mdc
+++ b/csrc/oceani.mdc
@@ -151,8 +151,8 @@ structures can be used.
 	## core functions
 
 	#include <getopt.h>
-	static char Usage[] = "Usage: oceani --trace --print --noexec --brackets"
-	                      "--section=SectionName prog.ocn\n";
+	static char Usage[] =
+		"Usage: oceani --trace --print --noexec --brackets --section=SectionName prog.ocn\n";
 	static const struct option long_options[] = {
 		{"trace",     0, NULL, 't'},
 		{"print",     0, NULL, 'p'},
-- 
2.43.0