From e972e2967bc4637e73894de040aaab8d293f153d Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Sat, 24 Feb 2007 13:03:59 +0000 Subject: 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) --- source3/lib/system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/system.c') 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 } -- cgit