summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2007-02-24 13:03:59 +0000
committerGerald Carter <jerry@samba.org>2007-02-24 13:03:59 +0000
commiteffa3e4b3fe633a0c4f1393fac83b5f75d721e14 (patch)
treea68858da62652538821b2884c240a0194a9ffe61
parent55e1d98ab20dcde449b28764c0dc9bf3129ff11c (diff)
downloadsamba-effa3e4b3fe633a0c4f1393fac83b5f75d721e14.tar.gz
samba-effa3e4b3fe633a0c4f1393fac83b5f75d721e14.tar.xz
samba-effa3e4b3fe633a0c4f1393fac83b5f75d721e14.zip
r21526: Fix stray character in sys_memalign() that is only
is the case where we don't have memalign() or posix_memalign().
-rw-r--r--source/lib/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/system.c b/source/lib/system.c
index 5e70fb8ac5e..20b31113ecd 100644
--- a/source/lib/system.c
+++ b/source/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
}