diff --git a/Testing/pipes.m b/Testing/pipes.m index 0138fb524..bff64a33d 100644 --- a/Testing/pipes.m +++ b/Testing/pipes.m @@ -4,7 +4,7 @@ int main() { char b[100]; int len; - id s = [[StdioStream alloc] initWithPipeFrom:"cat /etc/group | sort"]; + id s = [[StdioStream alloc] initWithPipeFrom: @"cat /etc/group | sort"]; while ((len = [s readBytes:b length:99]) > 0) {