diff options
author | Gerald Carter <jerry@samba.org> | 2007-02-24 13:03:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:18:10 -0500 |
commit | e972e2967bc4637e73894de040aaab8d293f153d (patch) | |
tree | d85fa2a8616c099fb0158531c8a44b091e52d3fe | |
parent | 56c1d7e5078ca6b79bb286f458956b5f49c83e81 (diff) | |
download | samba-e972e2967bc4637e73894de040aaab8d293f153d.tar.gz samba-e972e2967bc4637e73894de040aaab8d293f153d.tar.bz2 samba-e972e2967bc4637e73894de040aaab8d293f153d.zip |
r21526: Fix stray character in sys_memalign() that is only
is the case where we don't have memalign() or posix_memalign().
(This used to be commit 1635bac80011d15e3ed30b6d43b6e22b2ce2a000)
-rw-r--r-- | source3/lib/system.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c index 5e70fb8ac5..20b31113ec 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -59,7 +59,7 @@ void* sys_memalign( size_t align, size_t size ) return NULL; #else - DEBUG(0,("memalign functionalaity not available on this platform!\n")); + DEBUG(0,("memalign functionalaity not available on this platform!\n")); return NULL; #endif } |