From: hpa Date: Sun, 13 Jun 2004 06:08:09 +0000 (+0000) Subject: Fix missing "const" X-Git-Tag: syslinux-3.11~424 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fef280ec860c45ac7a48f3653b9aa926a0a51298;p=platform%2Fupstream%2Fsyslinux.git Fix missing "const" --- 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 */