mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Sync OpenBSD patchset 473:
Missing ;. From eric@ ages ago.
This commit is contained in:
		
							
								
								
									
										4
									
								
								array.h
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								array.h
									
									
									
									
									
								
							@@ -1,4 +1,4 @@
 | 
			
		||||
/* $Id: array.h,v 1.8 2009-10-28 23:12:38 tcunha Exp $ */
 | 
			
		||||
/* $Id: array.h,v 1.9 2009-11-02 21:34:32 tcunha Exp $ */
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (c) 2006 Nicholas Marriott <nicm@users.sourceforge.net>
 | 
			
		||||
@@ -102,7 +102,7 @@
 | 
			
		||||
 | 
			
		||||
#define ARRAY_CONCAT(a, b) do {						\
 | 
			
		||||
	ARRAY_ENSURE(a, (b)->num);					\
 | 
			
		||||
	memcpy((a)->list + (a)->num, (b)->list, (b)->num * ARRAY_ITEMSIZE(a)) \
 | 
			
		||||
	memcpy((a)->list + (a)->num, (b)->list, (b)->num * ARRAY_ITEMSIZE(a)); \
 | 
			
		||||
	(a)->num += (b)->num;						\
 | 
			
		||||
} while (0)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user