Blame SOURCES/0068-libparted-Fix-typo-in-hfs-error-message.patch
|
|
0cb0b9 |
From c625f6769144472f3c099cdd512318cea18e2766 Mon Sep 17 00:00:00 2001
|
|
|
0cb0b9 |
From: Sebastian Rasmussen <sebras@gmail.com>
|
|
|
0cb0b9 |
Date: Thu, 19 Jan 2017 23:38:40 +0100
|
|
|
0cb0b9 |
Subject: [PATCH 68/75] libparted: Fix typo in hfs error message
|
|
|
0cb0b9 |
|
|
|
0cb0b9 |
---
|
|
|
0cb0b9 |
libparted/fs/r/hfs/cache.c | 4 ++--
|
|
|
0cb0b9 |
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
0cb0b9 |
|
|
|
0cb0b9 |
diff --git a/libparted/fs/r/hfs/cache.c b/libparted/fs/r/hfs/cache.c
|
|
|
0cb0b9 |
index 68be366..03c2913 100644
|
|
|
0cb0b9 |
--- a/libparted/fs/r/hfs/cache.c
|
|
|
0cb0b9 |
+++ b/libparted/fs/r/hfs/cache.c
|
|
|
0cb0b9 |
@@ -210,8 +210,8 @@ hfsc_cache_move_extent(HfsCPrivateCache* cache, uint32_t old_start,
|
|
|
0cb0b9 |
ped_exception_throw (
|
|
|
0cb0b9 |
PED_EXCEPTION_BUG,
|
|
|
0cb0b9 |
PED_EXCEPTION_CANCEL,
|
|
|
0cb0b9 |
- _("Trying to move an extent from block Ox%X to block "
|
|
|
0cb0b9 |
- "Ox%X, but another one already exists at this "
|
|
|
0cb0b9 |
+ _("Trying to move an extent from block 0x%X to block "
|
|
|
0cb0b9 |
+ "0x%X, but another one already exists at this "
|
|
|
0cb0b9 |
"position. This should not happen!"),
|
|
|
0cb0b9 |
old_start, new_start);
|
|
|
0cb0b9 |
return NULL;
|
|
|
0cb0b9 |
--
|
|
|
0cb0b9 |
2.9.3
|
|
|
0cb0b9 |
|