[Crash-utility] [PATCH RFC 11/14] qemu-load: remove unused function get_le64()

Oleksandr Natalenko oleksandr at redhat.com
Fri Oct 27 08:23:17 UTC 2017


Signed-off-by: Oleksandr Natalenko <oleksandr at redhat.com>
---
 qemu-load.c | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/qemu-load.c b/qemu-load.c
index 1c17fd9..9d8ffed 100644
--- a/qemu-load.c
+++ b/qemu-load.c
@@ -142,14 +142,6 @@ get_be64 (FILE *fp)
 	return ((uint64_t)a << 32) | b;
 }
 
-static inline uint64_t
-get_le64 (FILE *fp)
-{
-	uint32_t b = get_le32 (fp);
-	uint32_t a = get_le32 (fp);
-	return ((uint64_t)a << 32) | b;
-}
-
 static inline void
 get_qemu128 (FILE *fp, union qemu_uint128_t *result)
 {
-- 
2.14.3




More information about the Crash-utility mailing list