diff options
author | Tim Potter <tpot@samba.org> | 2000-10-19 21:49:48 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-10-19 21:49:48 +0000 |
commit | 9328bc7b8a7d43ef0da47413f314f9943ea98847 (patch) | |
tree | f7a5ea72f996d98588991af8d9cbbaf7a083708c | |
parent | 66a5c05ec46b641224fbe01b30bd7e83571a2a1b (diff) | |
download | samba-9328bc7b8a7d43ef0da47413f314f9943ea98847.tar.gz samba-9328bc7b8a7d43ef0da47413f314f9943ea98847.tar.xz samba-9328bc7b8a7d43ef0da47413f314f9943ea98847.zip |
Fixed missing bracket on debug statement.
-rw-r--r-- | source/lib/replace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/replace.c b/source/lib/replace.c index 8d91c2d785c..bac0b7be9d0 100644 --- a/source/lib/replace.c +++ b/source/lib/replace.c @@ -171,7 +171,7 @@ Corrections by richard.kettlewell@kewill.com char *gr; if((grouplst = (gid_t *)malloc(sizeof(gid_t) * max_gr)) == NULL) { - DEBUG(0,("initgroups: malloc fail !\n"); + DEBUG(0,("initgroups: malloc fail !\n")); return -1; } |