simplify control flow
This commit is contained in:
		
							
								
								
									
										4
									
								
								std.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								std.c
									
									
									
									
									
								
							| @@ -109,11 +109,9 @@ getpty(void) { | |||||||
| 	ptm = posix_openpt(O_RDWR); | 	ptm = posix_openpt(O_RDWR); | ||||||
| #else | #else | ||||||
| 	ptm = open("/dev/ptmx", O_RDWR); | 	ptm = open("/dev/ptmx", O_RDWR); | ||||||
| 	if(ptm == -1) { | 	if(ptm == -1) | ||||||
| 		if(openpty(&ptm, &pts, NULL, NULL, NULL) == -1) | 		if(openpty(&ptm, &pts, NULL, NULL, NULL) == -1) | ||||||
| 			eprintn("error, cannot open pty"); | 			eprintn("error, cannot open pty"); | ||||||
| 		return; |  | ||||||
| 	} |  | ||||||
| #endif | #endif | ||||||
| #if defined(_XOPEN_SOURCE) | #if defined(_XOPEN_SOURCE) | ||||||
| 	if(ptm != -1) { | 	if(ptm != -1) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user