Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 May 2020 21:56:07 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r361676 - head/libexec/rtld-elf
Message-ID:  <202005312156.04VLu7oI015955@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Sun May 31 21:56:07 2020
New Revision: 361676
URL: https://svnweb.freebsd.org/changeset/base/361676

Log:
  rtld: Fix indent in print_usage().
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

Modified:
  head/libexec/rtld-elf/rtld.c

Modified: head/libexec/rtld-elf/rtld.c
==============================================================================
--- head/libexec/rtld-elf/rtld.c	Sun May 31 21:53:15 2020	(r361675)
+++ head/libexec/rtld-elf/rtld.c	Sun May 31 21:56:07 2020	(r361676)
@@ -5735,15 +5735,15 @@ print_usage(const char *argv0)
 {
 
 	rtld_printf("Usage: %s [-h] [-f <FD>] [-p] [--] <binary> [<args>]\n"
-		"\n"
-		"Options:\n"
-		"  -h        Display this help message\n"
-		"  -f <FD>   Execute <FD> instead of searching for <binary>\n"
-		"  -p        Search in PATH for named binary\n"
-		"  -v        Display identification information\n"
-		"  --        End of RTLD options\n"
-		"  <binary>  Name of process to execute\n"
-		"  <args>    Arguments to the executed process\n", argv0);
+	    "\n"
+	    "Options:\n"
+	    "  -h        Display this help message\n"
+	    "  -f <FD>   Execute <FD> instead of searching for <binary>\n"
+	    "  -p        Search in PATH for named binary\n"
+	    "  -v        Display identification information\n"
+	    "  --        End of RTLD options\n"
+	    "  <binary>  Name of process to execute\n"
+	    "  <args>    Arguments to the executed process\n", argv0);
 }
 
 /*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005312156.04VLu7oI015955>