mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Client flags was changed to uint64_t a while ago, fix a few cases where
it is still int (do not matter now but will with some new flags). From Michael Grant.
This commit is contained in:
		
							
								
								
									
										4
									
								
								tmux.h
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								tmux.h
									
									
									
									
									
								
							@@ -2703,10 +2703,12 @@ void	 server_clear_marked(void);
 | 
			
		||||
int	 server_is_marked(struct session *, struct winlink *,
 | 
			
		||||
	     struct window_pane *);
 | 
			
		||||
int	 server_check_marked(void);
 | 
			
		||||
int	 server_start(struct tmuxproc *, int, struct event_base *, int, char *);
 | 
			
		||||
int	 server_start(struct tmuxproc *, uint64_t, struct event_base *, int,
 | 
			
		||||
	     char *);
 | 
			
		||||
void	 server_update_socket(void);
 | 
			
		||||
void	 server_add_accept(int);
 | 
			
		||||
void printflike(1, 2) server_add_message(const char *, ...);
 | 
			
		||||
int	 server_create_socket(uint64_t, char **);
 | 
			
		||||
 | 
			
		||||
/* server-client.c */
 | 
			
		||||
RB_PROTOTYPE(client_windows, client_window, entry, server_client_window_cmp);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user