Grammar tweaks

This commit is contained in:
Kevin Sawicki
2012-12-19 13:42:15 -08:00
parent 5ce59314fc
commit b83a4ef5c0

View File

@@ -48,7 +48,7 @@ void sendPathToMainProcessAndExit(int fd, NSString *socketPath, NSString *path)
if (path) {
const char *buf = [path UTF8String];
if (sendto(fd, buf, [path lengthOfBytesUsingEncoding:NSUTF8StringEncoding], 0, (sockaddr *)&send_addr, sizeof(send_addr)) < 0) {
perror("Error: Failed to sending path to main Atom process");
perror("Error: Failed to send path to main Atom process");
exit(1);
}
}