firejail/src/fbuilder
Kelvin M. Klann ab1f8af8d0 Fix inconsistent leading spaces
Changes:

* Fix spaces being used for indentation in some lines in C
* Remove leading spaces before some goto labels
* Remove leading spaces before the start of some multiline comments
* Change leading spaces to tabs in some multiline macros
* Add missing asterisk to some multiline comments (to match other
  multiline comments and because they are false positives in the
  commands below)

Note: Leading spaces can be used for alignment (such as in function
parameters and function arguments in C) and for line continuation (such
as in long commands in shell scripts).  However, in the above changes
the leading spaces are used for other reasons and do not seem to fit
with the style used.

Commands used to search for errors:

    $ git grep -In '^ [^*]' | grep -E -v \
        -e '(COPYING|README|RELNOTES|configure(.ac)?):' \
        -e '^[^:]+.(md|yml|py):' -e '(bash|zsh)_completion/' \
	-e '^contrib/syntax/' -e '^etc/templates/.*\.txt:' -e '^m4/' \
        -e '^platform/debian/' -e '^src/man/.*\.txt:' \
        -e '.*mkrpm.sh:' -e '.*extract_errnos.sh:'
2023-02-20 18:02:37 -03:00
..
build_bin.c Update copyright to 2023 (#5664) 2023-02-15 18:57:44 +00:00
build_fs.c Update copyright to 2023 (#5664) 2023-02-15 18:57:44 +00:00
build_home.c Fix space before/after tab in indent 2023-02-20 17:39:31 -03:00
build_profile.c Update copyright to 2023 (#5664) 2023-02-15 18:57:44 +00:00
build_seccomp.c Update copyright to 2023 (#5664) 2023-02-15 18:57:44 +00:00
fbuilder.h Update copyright to 2023 (#5664) 2023-02-15 18:57:44 +00:00
filedb.c Fix space before/after tab in indent 2023-02-20 17:39:31 -03:00
main.c Fix inconsistent leading spaces 2023-02-20 18:02:37 -03:00
Makefile makefiles: rename common.mk to prog.mk 2022-11-21 17:37:17 -03:00
utils.c Update copyright to 2023 (#5664) 2023-02-15 18:57:44 +00:00