lib/param: fix line length of DEBUG statments touched in previous commit in set_varia...
authorMichael Adam <obnox@samba.org>
Mon, 29 Oct 2012 14:16:04 +0000 (15:16 +0100)
committerIra Cooper <ira@samba.org>
Mon, 29 Oct 2012 20:55:35 +0000 (21:55 +0100)
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Ira Cooper <ira@samba.org>
Autobuild-User(master): Ira Cooper <ira@samba.org>
Autobuild-Date(master): Mon Oct 29 21:55:35 CET 2012 on sn-devel-104

lib/param/loadparm.c

index 66ff9a5321ff6583499a7afe12169934addfcb4b..24627960e1ca199e9ffebc5bea3d61cd6c17abe5 100644 (file)
@@ -1300,7 +1300,8 @@ static bool set_variable(TALLOC_CTX *mem_ctx, int parmnum, void *parm_ptr,
                case P_BOOL: {
                        bool b;
                        if (!set_boolean(pszParmValue, &b)) {
-                               DEBUG(0,("set_variable(%s): value is not boolean!\n", pszParmValue));
+                               DEBUG(0, ("set_variable(%s): value is not "
+                                         "boolean!\n", pszParmValue));
                                return false;
                        }
                        *(bool *)parm_ptr = b;
@@ -1310,7 +1311,8 @@ static bool set_variable(TALLOC_CTX *mem_ctx, int parmnum, void *parm_ptr,
                case P_BOOLREV: {
                        bool b;
                        if (!set_boolean(pszParmValue, &b)) {
-                               DEBUG(0,("set_variable(%s): value is not boolean!\n", pszParmValue));
+                               DEBUG(0, ("set_variable(%s): value is not "
+                                         "boolean!\n", pszParmValue));
                                return false;
                        }
                        *(bool *)parm_ptr = !b;