diff options
author | Michael Adam <obnox@samba.org> | 2012-10-29 15:16:04 +0100 |
---|---|---|
committer | Ira Cooper <ira@samba.org> | 2012-10-29 21:55:35 +0100 |
commit | 88332dfd9f636196e594173b62d05b0607e3c05b (patch) | |
tree | 3805f582d83b8065bf9fb5c8febde86cb2536f61 | |
parent | b59fed0d5d7dceff3e5ab47a6f219849a24cff1b (diff) | |
download | samba-88332dfd9f636196e594173b62d05b0607e3c05b.tar.gz samba-88332dfd9f636196e594173b62d05b0607e3c05b.tar.bz2 samba-88332dfd9f636196e594173b62d05b0607e3c05b.zip |
lib/param: fix line length of DEBUG statments touched in previous commit in set_variable()
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
-rw-r--r-- | lib/param/loadparm.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index 66ff9a5321..24627960e1 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -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; |