Fix indentation in src/uv-freebsd.c

This commit is contained in:
Ben Noordhuis 2011-07-11 02:58:51 +02:00
parent 33b1b7acb9
commit cef595eedc

View File

@ -44,8 +44,8 @@ int uv_exepath(char* buffer, size_t* size) {
cb = *size;
if (sysctl(mib, 4, buffer, &cb, NULL, 0) < 0) {
*size = 0;
return -1;
*size = 0;
return -1;
}
*size = strlen(buffer);