r21526: Fix stray character in sys_memalign() that is only
authorGerald Carter <jerry@samba.org>
Sat, 24 Feb 2007 13:03:59 +0000 (13:03 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:18:10 +0000 (12:18 -0500)
is the case where we don't have memalign() or posix_memalign().
(This used to be commit 1635bac80011d15e3ed30b6d43b6e22b2ce2a000)

source3/lib/system.c

index 5e70fb8ac5e3f5f24dd6cc21cc2d934f5179f710..20b31113ecd71a17cd49e6d6d54af11d404eb014 100644 (file)
@@ -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"));\13
+       DEBUG(0,("memalign functionalaity not available on this platform!\n"));
        return NULL;
 #endif
 }