Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Jun 2017 17:56:31 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r319543 - head/bin/dd/tests
Message-ID:  <201706031756.v53HuVum045504@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sat Jun  3 17:56:31 2017
New Revision: 319543
URL: https://svnweb.freebsd.org/changeset/base/319543

Log:
  Stylistic tweaks
  
  Move opening braces of functions from the last column to column 0.
  
  MFC after:	18 days
  MFC with:	r319339
  Sponsored by:	Dell EMC Isilon

Modified:
  head/bin/dd/tests/dd2_test.sh

Modified: head/bin/dd/tests/dd2_test.sh
==============================================================================
--- head/bin/dd/tests/dd2_test.sh	Sat Jun  3 17:24:13 2017	(r319542)
+++ head/bin/dd/tests/dd2_test.sh	Sat Jun  3 17:56:31 2017	(r319543)
@@ -27,10 +27,12 @@
 
 
 atf_test_case seek_overflow
-seek_overflow_head() {
+seek_overflow_head()
+{
 	atf_set "descr" "dd(1) should reject too-large seek values"
 }
-seek_overflow_body() {
+seek_overflow_body()
+{
 	touch f.in
 	# Positive tests
 	seek=`echo "2^63 / 4096 - 1" | bc`



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