trivial indentation fix

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@30725 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2010-06-15 05:31:37 +00:00
parent 37078c8e66
commit 4ccce03998

View file

@ -81,10 +81,10 @@
VirtualFree(buffer, 0, MEM_RELEASE);
#else
#if defined(HAVE_MPROTECT)
if (mprotect(buffer,sysconf(_SC_PAGESIZE), PROT_READ|PROT_WRITE) == -1)
{
NSLog(@"Failed to protect memory as writable: %@", [NSError _last]);
}
if (mprotect(buffer,sysconf(_SC_PAGESIZE), PROT_READ|PROT_WRITE) == -1)
{
NSLog(@"Failed to protect memory as writable: %@", [NSError _last]);
}
#endif
free(buffer);
#endif