diff options
author | 2019-12-16 09:08:51 +0100 | |
---|---|---|
committer | 2019-12-16 09:08:51 +0100 | |
commit | 94e14da890b1b68526b5f87ff1c97f374fd2471e (patch) | |
tree | ad17c794208b02cd2ae24d67ab7e9c14c2fd43c5 /lib | |
parent | drivers/base: base.h: add proper copyright and header info (diff) | |
parent | Linux 5.5-rc2 (diff) | |
download | wireguard-linux-94e14da890b1b68526b5f87ff1c97f374fd2471e.tar.xz wireguard-linux-94e14da890b1b68526b5f87ff1c97f374fd2471e.zip |
Merge 5.5-rc2 into driver-core-next
We need the driver core fixes in here as well.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/raid6/unroll.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/raid6/unroll.awk b/lib/raid6/unroll.awk index c6aa03631df8..0809805a7e23 100644 --- a/lib/raid6/unroll.awk +++ b/lib/raid6/unroll.awk @@ -13,7 +13,7 @@ BEGIN { for (i = 0; i < rep; ++i) { tmp = $0 gsub(/\$\$/, i, tmp) - gsub(/\$\#/, n, tmp) + gsub(/\$#/, n, tmp) gsub(/\$\*/, "$", tmp) print tmp } |