[ghex] direct: Cleanup test code
- From: Logan Rathbone <larathbone src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ghex] direct: Cleanup test code
- Date: Fri, 17 Jun 2022 02:19:53 +0000 (UTC)
commit 4eaa7c735c003685fd46f72c12b3f4b042b65a75
Author: Logan Rathbone <poprocks gmail com>
Date: Thu Jun 16 14:42:46 2022 -0400
direct: Cleanup test code
src/hex-buffer-direct.c | 16 ++--------------
1 file changed, 2 insertions(+), 14 deletions(-)
---
diff --git a/src/hex-buffer-direct.c b/src/hex-buffer-direct.c
index a15ad3a..6fa8f3b 100644
--- a/src/hex-buffer-direct.c
+++ b/src/hex-buffer-direct.c
@@ -326,7 +326,6 @@ hex_buffer_direct_get_data (HexBuffer *buf,
cp = g_hash_table_lookup (self->changes, &loc);
if (cp)
{
- g_debug ("found change - swapping byte at: %ld", loc);
data[i] = *cp;
}
}
@@ -493,28 +492,18 @@ hex_buffer_direct_set_data (HexBuffer *buf,
retval = g_hash_table_replace (self->changes, ip, cp);
- // TEST
- if (retval) /* key did not exist yet */
- {
- g_debug ("key did not exist yet");
- }
- else
+ if (! retval) /* key already existed; replace */
{
char *tmp = NULL;
- g_debug ("key already existed; replaced");
-
tmp = get_file_data (self, offset, 1);
- if (*tmp == *cp)
- {
- g_debug ("key value back to what O.G. file was. Removing hash entry.");
+ if (*tmp == *cp) {
g_hash_table_remove (self->changes, ip);
}
g_free (tmp);
}
}
-
return TRUE;
}
@@ -544,7 +533,6 @@ hex_buffer_direct_write_to_file (HexBuffer *buf,
offset = *keys[i];
new_offset = lseek (self->fd, offset, SEEK_SET);
g_assert (offset == new_offset);
- g_debug ("%u: offset %ld: switch with: %c", i, offset, *cp);
errno = 0;
nwritten = write (self->fd, cp, 1);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]