Fix typo in safe_close() made while converting to debug framework

that prevented it from actually closing anything.
This commit is contained in:
Todd C. Miller
2012-02-27 14:46:11 -05:00
parent cc97c2e75c
commit 6a37b4bf73

View File

@@ -1263,5 +1263,5 @@ safe_close(int fd)
errno = EINVAL; errno = EINVAL;
return -1; return -1;
} }
debug_return_int(fd); debug_return_int(close(fd));
} }