diff options
author | 2020-01-31 17:42:33 -0800 | |
---|---|---|
committer | 2020-01-31 17:42:33 -0800 | |
commit | b19efcabb587e5470a423ef778905f47e5a47f1a (patch) | |
tree | 8863c2233ed8a30d55c4e4029a98c3d7faf359a8 /lib/raid6 | |
parent | Input: pm8xxx-vib - fix handling of separate enable register (diff) | |
parent | Input: synaptics-rmi4 - switch to reduced reporting mode (diff) | |
download | wireguard-linux-b19efcabb587e5470a423ef778905f47e5a47f1a.tar.xz wireguard-linux-b19efcabb587e5470a423ef778905f47e5a47f1a.zip |
Merge branch 'next' into for-linus
Prepare input updates for 5.6 merge window.
Diffstat (limited to 'lib/raid6')
-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 } |