aboutsummaryrefslogtreecommitdiff
path: root/projects/grub
diff options
context:
space:
mode:
authorAndrew Robbins <contact@andrewrobbins.info>2018-12-27 19:29:42 -0500
committerAndrew Robbins <contact@andrewrobbins.info>2018-12-28 21:43:22 -0500
commit9e7cc1ac00d4b12147bd67e3e66cd71d11126f94 (patch)
treef87e0776c745f64d6619beb77442c08939489266 /projects/grub
parent62800886f71f65b92c5e79adeb5939e9e42632de (diff)
downloadlibrebootfr-9e7cc1ac00d4b12147bd67e3e66cd71d11126f94.tar.gz
librebootfr-9e7cc1ac00d4b12147bd67e3e66cd71d11126f94.zip
Remove extraneous radix specifier in grub_bo_dump()
Diffstat (limited to 'projects/grub')
-rwxr-xr-xprojects/grub/grub-helper2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/grub/grub-helper b/projects/grub/grub-helper
index e28c0f9e..f04aedc7 100755
--- a/projects/grub/grub-helper
+++ b/projects/grub/grub-helper
@@ -72,7 +72,7 @@ grub_bo_search() {
grub_bo_dump() {
local file="$1"
- od -Anx -t x1 -w16 -v "$file" | paste -sd '' | tr -d ' '
+ od -An -t x1 -w16 -v "$file" | paste -sd '' | tr -d ' '
}
grub_bo() {