From 309c665d3039f5358fe1e82b38c82c340b5254ac Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Sun, 20 Dec 2015 10:21:34 +0100 Subject: [PATCH] Tweak remove blank line --- bacula/src/filed/backup.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/bacula/src/filed/backup.c b/bacula/src/filed/backup.c index 31ed90a324..9ac1d4d22d 100644 --- a/bacula/src/filed/backup.c +++ b/bacula/src/filed/backup.c @@ -28,19 +28,19 @@ #include "bacula.h" #include "filed.h" #include "backup.h" - + #ifdef HAVE_LZO const bool have_lzo = true; -#else +#else const bool have_lzo = false; -#endif - +#endif + #ifdef HAVE_LIBZ const bool have_libz = true; -#else +#else const bool have_libz = false; -#endif - +#endif + /* Forward referenced functions */ int save_file(JCR *jcr, FF_PKT *ff_pkt, bool top_level); static int send_data(bctx_t &bctx, int stream); @@ -166,9 +166,8 @@ bool blast_data_to_storage_daemon(JCR *jcr, char *addr) memset(jcr->xattr_ctx, 0, sizeof(xattr_ctx_t)); jcr->xattr_ctx->content = get_pool_memory(PM_MESSAGE); #endif - - - /** Subroutine save_file() is called for each file */ + + /* Subroutine save_file() is called for each file */ if (!find_files(jcr, (FF_PKT *)jcr->ff, save_file, plugin_save)) { ok = false; /* error */ jcr->setJobStatus(JS_ErrorTerminated); -- 2.39.5