all: unify comment style for SPDX-License-Identifier tag

Our coding style recommends C style comments (/* */) instead of C++
(//). Also, systemd (which we partly fork) uses C style comments for
the SPDX-License-Identifier.

Unify the style.

  $ sed -i '1 s#// SPDX-License-Identifier: \([^ ]\+\)$#/* SPDX-License-Identifier: \1 */#' -- $(git ls-files -- '*.[hc]' '*.[hc]pp')
This commit is contained in:
Thomas Haller
2020-09-29 16:42:22 +02:00
parent 36b761fcaa
commit 88071abb43
874 changed files with 874 additions and 874 deletions

View File

@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-2.0+
/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright (C) 2011 Eckhart Wörner
*/