]> git.ipfire.org Git - thirdparty/util-linux.git/commit
lsfd: convert lines introducing local variable to a block with {...}
authorMasatake YAMATO <yamato@redhat.com>
Fri, 1 Oct 2021 17:15:00 +0000 (02:15 +0900)
committerKarel Zak <kzak@redhat.com>
Wed, 6 Oct 2021 09:01:54 +0000 (11:01 +0200)
commiteb83898ac11c501d4fb865670ab37e405e103391
tree64852bc2c0e305ccc8f5b5bc69507c77ef71028b
parentef70cdd96d79d3986268eaf6d96f948da5f49e1a
lsfd: convert lines introducing local variable to a block with {...}

The following code causing an error on test run on GitHub Action:

  case FOO:
      type localvar;

This change converts above code to:

  case FOO: {
      type localvar;
  }

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
misc-utils/lsfd-filter.c