Patch from Denis Vlasenko turning static const int (which gets emitted into
the busybox binary) into enums (which don't).
This commit is contained in:
		@@ -21,13 +21,15 @@
 | 
			
		||||
#include <endian.h>
 | 
			
		||||
#include "busybox.h"
 | 
			
		||||
 | 
			
		||||
static const int PSF_MAGIC1 = 0x36;
 | 
			
		||||
static const int PSF_MAGIC2 = 0x04;
 | 
			
		||||
enum{
 | 
			
		||||
	PSF_MAGIC1 = 0x36,
 | 
			
		||||
	PSF_MAGIC2 = 0x04,
 | 
			
		||||
 | 
			
		||||
static const int PSF_MODE512 = 0x01;
 | 
			
		||||
static const int PSF_MODEHASTAB = 0x02;
 | 
			
		||||
static const int PSF_MAXMODE = 0x03;
 | 
			
		||||
static const int PSF_SEPARATOR = 0xFFFF;
 | 
			
		||||
	PSF_MODE512 = 0x01,
 | 
			
		||||
	PSF_MODEHASTAB = 0x02,
 | 
			
		||||
	PSF_MAXMODE = 0x03,
 | 
			
		||||
	PSF_SEPARATOR = 0xFFFF
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct psf_header {
 | 
			
		||||
	unsigned char magic1, magic2;	/* Magic number */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user