summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/chdman.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/chdman.c')
-rw-r--r--src/tools/chdman.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/chdman.c b/src/tools/chdman.c
index 2364cce0a9f..bad744b684f 100644
--- a/src/tools/chdman.c
+++ b/src/tools/chdman.c
@@ -98,6 +98,7 @@ static clock_t lastprogress = 0;
put_bigendian_uint32 - write a UINT32 in big-endian order to memory
-------------------------------------------------*/
+#ifdef UNUSED_FUNCTON
INLINE void put_bigendian_uint32(UINT8 *base, UINT32 value)
{
base[0] = value >> 24;
@@ -105,7 +106,7 @@ INLINE void put_bigendian_uint32(UINT8 *base, UINT32 value)
base[2] = value >> 8;
base[3] = value;
}
-
+#endif
/*-------------------------------------------------
print_big_int - 64-bit int printing with commas