Fix missing newline.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26251 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz
2008-07-04 17:38:34 +00:00
parent e5f7642ca8
commit 0ea16d8b5b
+1 -1
View File
@@ -1900,7 +1900,7 @@ realloc(void *address, size_t newSize)
if (available >= newSize) {
// there is enough room available for the newSize
dprintf("realloc(): new size %ld fits in old area %ld with %ld available",
dprintf("realloc(): new size %ld fits in old area %ld with %ld available\n",
newSize, area, available);
return address;
}