diff options
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/registry/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/registry/util.c b/source4/lib/registry/util.c index 69c49f2a28..6552e4d6d9 100644 --- a/source4/lib/registry/util.c +++ b/source4/lib/registry/util.c @@ -82,8 +82,8 @@ _PUBLIC_ char *reg_val_data_string(TALLOC_CTX *mem_ctx, case REG_DWORD: case REG_DWORD_BIG_ENDIAN: SMB_ASSERT(data.length == sizeof(uint32_t)); - ret = talloc_asprintf(mem_ctx, "0x%8.8x", - IVAL(data.data, 0)); + ret = talloc_asprintf(mem_ctx, "0x%8.8x", + IVAL(data.data, 0)); break; case REG_QWORD: SMB_ASSERT(data.length == sizeof(uint64_t)); |