svn commit: r318445 - head/libexec/rtld-elf

Konstantin Belousov kib at FreeBSD.org
Thu May 18 09:31:32 UTC 2017


Author: kib
Date: Thu May 18 09:31:30 2017
New Revision: 318445
URL: https://svnweb.freebsd.org/changeset/base/318445

Log:
  Fix style [1], add static keyword before static function definition.
  
  Noted by:	bapt [1]
  Sponsored by:	The FreeBSD Foundation
  MFC after:	2 weeks

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

Modified: head/libexec/rtld-elf/rtld.c
==============================================================================
--- head/libexec/rtld-elf/rtld.c	Thu May 18 08:25:07 2017	(r318444)
+++ head/libexec/rtld-elf/rtld.c	Thu May 18 09:31:30 2017	(r318445)
@@ -5378,7 +5378,8 @@ parse_integer(const char *str)
 	return (n);
 }
 
-void print_usage(const char *argv0)
+static void
+print_usage(const char *argv0)
 {
 
 	rtld_printf("Usage: %s [-h] [-f <FD>] [--] <binary> [<args>]\n"


More information about the svn-src-head mailing list