From 6f1c485d8ed4af24b433134c92f9a5dc94235e17 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Sat, 17 Nov 2007 21:01:31 +0000 Subject: [PATCH] Removed compiler warnings. --- core/cfs/cfs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/cfs/cfs.h b/core/cfs/cfs.h index 5bc73b86a..f5ebca5e5 100644 --- a/core/cfs/cfs.h +++ b/core/cfs/cfs.h @@ -54,7 +54,7 @@ * * Author: Adam Dunkels * - * $Id: cfs.h,v 1.6 2007/11/17 18:01:00 adamdunkels Exp $ + * $Id: cfs.h,v 1.7 2007/11/17 21:01:31 oliverschmidt Exp $ */ #ifndef __CFS_H__ #define __CFS_H__ @@ -62,11 +62,11 @@ #include "contiki.h" struct cfs_dir { - unsigned char dummy_space[32]; + char dummy_space[32]; }; struct cfs_dirent { - unsigned char name[32]; + char name[32]; unsigned int size; };