changed getproto, maybe that might fix the killclient issue reported on the list
This commit is contained in:
		
							parent
							
								
									525ef3c178
								
							
						
					
					
						commit
						d54444cfd7
					
				
							
								
								
									
										5
									
								
								main.c
								
								
								
								
							
							
						
						
									
										5
									
								
								main.c
								
								
								
								
							| 
						 | 
					@ -102,9 +102,10 @@ getproto(Window w)
 | 
				
			||||||
	int protos = 0;
 | 
						int protos = 0;
 | 
				
			||||||
	int i;
 | 
						int i;
 | 
				
			||||||
	long res;
 | 
						long res;
 | 
				
			||||||
	unsigned char *protocols;
 | 
						Atom *protocols;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	res = win_property(w, wmatom[WMProtocols], XA_ATOM, 20L, &protocols);
 | 
						res = win_property(w, wmatom[WMProtocols], XA_ATOM, 20L,
 | 
				
			||||||
 | 
								((unsigned char **)&protocols));
 | 
				
			||||||
	if(res <= 0) {
 | 
						if(res <= 0) {
 | 
				
			||||||
		return protos;
 | 
							return protos;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue