From: Michael Adam Date: Sat, 12 Apr 2008 23:44:57 +0000 (+0200) Subject: registry cachehook: eliminate a couple trailing spaces (empty lines). X-Git-Tag: samba-3.3.0pre1~2715 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c9f01aee37165216fa8a5331c64dd93963b38802;p=thirdparty%2Fsamba.git registry cachehook: eliminate a couple trailing spaces (empty lines). Michael --- diff --git a/source/registry/reg_cachehook.c b/source/registry/reg_cachehook.c index 705d08abf88..d59dc4cbd58 100644 --- a/source/registry/reg_cachehook.c +++ b/source/registry/reg_cachehook.c @@ -102,14 +102,14 @@ REGISTRY_OPS *reghook_cache_find(const char *keyname) } DEBUG(10,("reghook_cache_find: Searching for keyname [%s]\n", key)); - + ops = (REGISTRY_OPS *)pathtree_find(cache_tree, key); DEBUG(10, ("reghook_cache_find: found ops %p for key [%s]\n", ops ? (void *)ops : 0, key)); - + TALLOC_FREE(key); - + return ops; } @@ -120,6 +120,6 @@ REGISTRY_OPS *reghook_cache_find(const char *keyname) void reghook_dump_cache( int debuglevel ) { DEBUG(debuglevel,("reghook_dump_cache: Starting cache dump now...\n")); - + pathtree_print_keys( cache_tree, debuglevel ); }