From 02c2d3c9c0d48b4285644dc3a44393f67888a4ce Mon Sep 17 00:00:00 2001 From: bg- Date: Tue, 15 May 2007 10:28:03 +0000 Subject: [PATCH] * Scratch buffer is used as a string more often than not, change to char * rather than unsigned char *. --- core/loader/cle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/loader/cle.h b/core/loader/cle.h index accc2f260..87a850c87 100644 --- a/core/loader/cle.h +++ b/core/loader/cle.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)$Id: cle.h,v 1.5 2007/04/26 13:37:41 bg- Exp $ + * @(#)$Id: cle.h,v 1.6 2007/05/15 10:28:03 bg- Exp $ */ #ifndef CLE_H @@ -48,7 +48,7 @@ typedef uint32_t cle_addr; typedef uintptr_t cle_addr; #endif -typedef unsigned char cle_scratch[32]; +typedef char cle_scratch[32]; struct cle_info { cle_addr text;