summaryrefslogtreecommitdiffstats
path: root/src/sordi.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-11-22 20:31:25 -0500
committerDavid Robillard <d@drobilla.net>2024-11-22 20:31:25 -0500
commit0ad7658686ea1867497a276ff2d72148b57a4d1e (patch)
treea781b762969a7634ca586162e9bcb15ce785299a /src/sordi.c
parentfd1c5da0af0bc130392b8ba29e957ce0cfa0c09e (diff)
downloadsord-0ad7658686ea1867497a276ff2d72148b57a4d1e.tar.gz
sord-0ad7658686ea1867497a276ff2d72148b57a4d1e.tar.bz2
sord-0ad7658686ea1867497a276ff2d72148b57a4d1e.zip
Use more conventional command-line help formatting
Diffstat (limited to 'src/sordi.c')
-rw-r--r--src/sordi.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sordi.c b/src/sordi.c
index 05d8194..659cbbf 100644
--- a/src/sordi.c
+++ b/src/sordi.c
@@ -45,11 +45,11 @@ print_usage(const char* name, bool error)
fprintf(os, "Usage: %s [OPTION]... INPUT [BASE_URI]\n", name);
fprintf(os, "Load and re-serialise RDF data.\n");
fprintf(os, "Use - for INPUT to read from standard input.\n\n");
- fprintf(os, " -h Display this help and exit.\n");
- fprintf(os, " -i SYNTAX Input syntax (`turtle' or `ntriples').\n");
- fprintf(os, " -o SYNTAX Output syntax (`turtle' or `ntriples').\n");
- fprintf(os, " -s INPUT Parse INPUT as string (terminates options).\n");
- fprintf(os, " -v Display version information and exit.\n");
+ fprintf(os, " -h Display this help and exit\n");
+ fprintf(os, " -i SYNTAX Input syntax (`turtle' or `ntriples')\n");
+ fprintf(os, " -o SYNTAX Output syntax (`turtle' or `ntriples')\n");
+ fprintf(os, " -s INPUT Parse INPUT as string (terminates options)\n");
+ fprintf(os, " -v Display version information and exit\n");
return error ? 1 : 0;
}