Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 May 2021 07:50:28 GMT
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: d39a1652d4e4 - stable/13 - pkg(7): indentation fixes
Message-ID:  <202105050750.1457oSVt083223@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by bapt:

URL: https://cgit.FreeBSD.org/src/commit/?id=d39a1652d4e402344deee0f31d32e393314c7907

commit d39a1652d4e402344deee0f31d32e393314c7907
Author:     Baptiste Daroussin <bapt@FreeBSD.org>
AuthorDate: 2021-04-27 02:07:05 +0000
Commit:     Baptiste Daroussin <bapt@FreeBSD.org>
CommitDate: 2021-05-05 07:50:02 +0000

    pkg(7): indentation fixes
    
    Non functional changes
    
    (cherry picked from commit f648d757b76d70d58bbda7c3ed3ff79261d24d0f)
---
 usr.sbin/pkg/config.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/usr.sbin/pkg/config.c b/usr.sbin/pkg/config.c
index 2bcfd9c405f3..70c745900931 100644
--- a/usr.sbin/pkg/config.c
+++ b/usr.sbin/pkg/config.c
@@ -51,8 +51,8 @@ __FBSDID("$FreeBSD$");
 #define roundup2(x, y)	(((x)+((y)-1))&(~((y)-1))) /* if y is powers of two */
 
 struct config_value {
-       char *value;
-       STAILQ_ENTRY(config_value) next;
+	char *value;
+	STAILQ_ENTRY(config_value) next;
 };
 
 struct config_entry {



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