From 166e51d3a6f81834cc89aec36015f05f350be31e Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 13 Jul 2022 21:10:10 -0600 Subject: Fix package names/imports --- lib/btrfs/internal/uuid.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/btrfs/internal/uuid.go') diff --git a/lib/btrfs/internal/uuid.go b/lib/btrfs/internal/uuid.go index a16d10f..3749b1a 100644 --- a/lib/btrfs/internal/uuid.go +++ b/lib/btrfs/internal/uuid.go @@ -2,12 +2,14 @@ // // SPDX-License-Identifier: GPL-2.0-or-later -package util +package internal import ( "encoding/hex" "fmt" "strings" + + "git.lukeshu.com/btrfs-progs-ng/lib/fmtutil" ) type UUID [16]byte @@ -33,7 +35,7 @@ func (a UUID) Cmp(b UUID) int { } func (uuid UUID) Format(f fmt.State, verb rune) { - FormatByteArrayStringer(uuid, uuid[:], f, verb) + fmtutil.FormatByteArrayStringer(uuid, uuid[:], f, verb) } func ParseUUID(str string) (UUID, error) { -- cgit v1.2.3-54-g00ecf