1From c1dc134f5f2591d364907a2e6102848d76c762a7 Mon Sep 17 00:00:00 2001
2From: Michael Forney <mforney@mforney.org>
3Date: Tue, 4 Jul 2023 18:57:02 -0700
4Subject: [PATCH] Break up long string literal
5
6---
7 bubblewrap.c | 2 ++
8 1 file changed, 2 insertions(+)
9
10diff --git a/bubblewrap.c b/bubblewrap.c
11index f8728c7..d834618 100644
12--- a/bubblewrap.c
13+++ b/bubblewrap.c
14@@ -340,6 +340,8 @@ usage (int ecode, FILE *out)
15 " --dev-bind-try SRC DEST Equal to --dev-bind but ignores non-existent SRC\n"
16 " --ro-bind SRC DEST Bind mount the host path SRC readonly on DEST\n"
17 " --ro-bind-try SRC DEST Equal to --ro-bind but ignores non-existent SRC\n"
18+ );
19+ fprintf (out,
20 " --bind-fd FD DEST Bind open directory or path fd on DEST\n"
21 " --ro-bind-fd FD DEST Bind open directory or path fd read-only on DEST\n"
22 " --remount-ro DEST Remount DEST as readonly; does not recursively remount\n"
23--
242.44.0
25