Skip to content

Commit 6dcc05f

Browse files
pks-tgitster
authored andcommitted
reftable: fix formatting of the license header
The license headers used across the reftable library doesn't follow our typical coding style for multi-line comments. Fix it. Signed-off-by: Patrick Steinhardt <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent c7c4e5e commit 6dcc05f

34 files changed

+199
-199
lines changed

reftable/basics.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
Copyright 2020 Google LLC
3-
4-
Use of this source code is governed by a BSD-style
5-
license that can be found in the LICENSE file or at
6-
https://developers.google.com/open-source/licenses/bsd
7-
*/
2+
* Copyright 2020 Google LLC
3+
*
4+
* Use of this source code is governed by a BSD-style
5+
* license that can be found in the LICENSE file or at
6+
* https://developers.google.com/open-source/licenses/bsd
7+
*/
88

99
#define REFTABLE_ALLOW_BANNED_ALLOCATORS
1010
#include "basics.h"

reftable/basics.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
Copyright 2020 Google LLC
3-
4-
Use of this source code is governed by a BSD-style
5-
license that can be found in the LICENSE file or at
6-
https://developers.google.com/open-source/licenses/bsd
7-
*/
2+
* Copyright 2020 Google LLC
3+
*
4+
* Use of this source code is governed by a BSD-style
5+
* license that can be found in the LICENSE file or at
6+
* https://developers.google.com/open-source/licenses/bsd
7+
*/
88

99
#ifndef BASICS_H
1010
#define BASICS_H

reftable/block.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
Copyright 2020 Google LLC
3-
4-
Use of this source code is governed by a BSD-style
5-
license that can be found in the LICENSE file or at
6-
https://developers.google.com/open-source/licenses/bsd
7-
*/
2+
* Copyright 2020 Google LLC
3+
*
4+
* Use of this source code is governed by a BSD-style
5+
* license that can be found in the LICENSE file or at
6+
* https://developers.google.com/open-source/licenses/bsd
7+
*/
88

99
#include "block.h"
1010

reftable/block.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
Copyright 2020 Google LLC
3-
4-
Use of this source code is governed by a BSD-style
5-
license that can be found in the LICENSE file or at
6-
https://developers.google.com/open-source/licenses/bsd
7-
*/
2+
* Copyright 2020 Google LLC
3+
*
4+
* Use of this source code is governed by a BSD-style
5+
* license that can be found in the LICENSE file or at
6+
* https://developers.google.com/open-source/licenses/bsd
7+
*/
88

99
#ifndef BLOCK_H
1010
#define BLOCK_H

reftable/blocksource.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
Copyright 2020 Google LLC
3-
4-
Use of this source code is governed by a BSD-style
5-
license that can be found in the LICENSE file or at
6-
https://developers.google.com/open-source/licenses/bsd
7-
*/
2+
* Copyright 2020 Google LLC
3+
*
4+
* Use of this source code is governed by a BSD-style
5+
* license that can be found in the LICENSE file or at
6+
* https://developers.google.com/open-source/licenses/bsd
7+
*/
88

99
#include "system.h"
1010

reftable/blocksource.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
Copyright 2020 Google LLC
3-
4-
Use of this source code is governed by a BSD-style
5-
license that can be found in the LICENSE file or at
6-
https://developers.google.com/open-source/licenses/bsd
7-
*/
2+
* Copyright 2020 Google LLC
3+
*
4+
* Use of this source code is governed by a BSD-style
5+
* license that can be found in the LICENSE file or at
6+
* https://developers.google.com/open-source/licenses/bsd
7+
*/
88

99
#ifndef BLOCKSOURCE_H
1010
#define BLOCKSOURCE_H

reftable/constants.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
Copyright 2020 Google LLC
3-
4-
Use of this source code is governed by a BSD-style
5-
license that can be found in the LICENSE file or at
6-
https://developers.google.com/open-source/licenses/bsd
7-
*/
2+
* Copyright 2020 Google LLC
3+
*
4+
* Use of this source code is governed by a BSD-style
5+
* license that can be found in the LICENSE file or at
6+
* https://developers.google.com/open-source/licenses/bsd
7+
*/
88

99
#ifndef CONSTANTS_H
1010
#define CONSTANTS_H

reftable/error.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
Copyright 2020 Google LLC
3-
4-
Use of this source code is governed by a BSD-style
5-
license that can be found in the LICENSE file or at
6-
https://developers.google.com/open-source/licenses/bsd
7-
*/
2+
* Copyright 2020 Google LLC
3+
*
4+
* Use of this source code is governed by a BSD-style
5+
* license that can be found in the LICENSE file or at
6+
* https://developers.google.com/open-source/licenses/bsd
7+
*/
88

99
#include "system.h"
1010
#include "reftable-error.h"

reftable/iter.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
Copyright 2020 Google LLC
3-
4-
Use of this source code is governed by a BSD-style
5-
license that can be found in the LICENSE file or at
6-
https://developers.google.com/open-source/licenses/bsd
7-
*/
2+
* Copyright 2020 Google LLC
3+
*
4+
* Use of this source code is governed by a BSD-style
5+
* license that can be found in the LICENSE file or at
6+
* https://developers.google.com/open-source/licenses/bsd
7+
*/
88

99
#include "iter.h"
1010

reftable/iter.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
Copyright 2020 Google LLC
3-
4-
Use of this source code is governed by a BSD-style
5-
license that can be found in the LICENSE file or at
6-
https://developers.google.com/open-source/licenses/bsd
7-
*/
2+
* Copyright 2020 Google LLC
3+
*
4+
* Use of this source code is governed by a BSD-style
5+
* license that can be found in the LICENSE file or at
6+
* https://developers.google.com/open-source/licenses/bsd
7+
*/
88

99
#ifndef ITER_H
1010
#define ITER_H

0 commit comments

Comments
 (0)