summaryrefslogtreecommitdiffstats
path: root/source/lib/system.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2007-02-24 13:03:59 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:18:10 -0500
commit1635bac80011d15e3ed30b6d43b6e22b2ce2a000 (patch)
tree318f64ad0d319910be9344a87cab0af7f2d230e4 /source/lib/system.c
parent0d2b80c6c4a744b05a0efdec352cddccc430e0c4 (diff)
downloadsamba-1635bac80011d15e3ed30b6d43b6e22b2ce2a000.tar.gz
samba-1635bac80011d15e3ed30b6d43b6e22b2ce2a000.tar.xz
samba-1635bac80011d15e3ed30b6d43b6e22b2ce2a000.zip
r21526: Fix stray character in sys_memalign() that is only
is the case where we don't have memalign() or posix_memalign().
Diffstat (limited to 'source/lib/system.c')
-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
}