From aa7f4063177118b8dd37b30f40c5543fdd5f5ec0 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 30 Nov 2012 10:53:55 +0100 Subject: [PATCH] s3-reg: Fix copy and paste error in debug message. Found by coverity. --- source3/registry/regfio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/registry/regfio.c b/source3/registry/regfio.c index bde18630aa0..fe800948c21 100644 --- a/source3/registry/regfio.c +++ b/source3/registry/regfio.c @@ -1067,8 +1067,8 @@ static bool hbin_prs_key( REGF_FILE *file, REGF_HBIN *hbin, REGF_NK_REC *nk ) if ( !hbin_contains_offset( hbin, nk->sk_off ) ) { sub_hbin = lookup_hbin_block( file, nk->sk_off ); if ( !sub_hbin ) { - DEBUG(0,("hbin_prs_key: Failed to find HBIN block containing sk_offset [0x%x]\n", - nk->subkeys_off)); + DEBUG(0,("hbin_prs_key: Failed to find HBIN block containing sk_off [0x%x]\n", + nk->sk_off)); return False; } } -- 2.11.4.GIT