From fef280ec860c45ac7a48f3653b9aa926a0a51298 Mon Sep 17 00:00:00 2001 From: hpa Date: Sun, 13 Jun 2004 06:08:09 +0000 Subject: [PATCH] Fix missing "const" --- syslxmod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syslxmod.c b/syslxmod.c index a5d9e79..5d385e5 100644 --- a/syslxmod.c +++ b/syslxmod.c @@ -104,7 +104,7 @@ int syslinux_check_bootsect(const void *bs, const char *device) { int veryold; unsigned int sectors, clusters; - unsigned char *sectbuf = bs; + const unsigned char *sectbuf = bs; if ( sectbuf[bsBootSignature] == 0x29 ) { /* It's DOS, and it has all the new nice fields */ -- 2.7.4