Added 'const'.

This commit is contained in:
oliverschmidt 2008-02-06 16:41:19 +00:00
parent 9444e5cbc1
commit a105e1a40c
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
* *
* Author: Oliver Schmidt <ol.sc@web.de> * Author: Oliver Schmidt <ol.sc@web.de>
* *
* $Id: cfs-win32.c,v 1.5 2008/01/04 21:59:59 oliverschmidt Exp $ * $Id: cfs-win32.c,v 1.6 2008/02/06 16:41:19 oliverschmidt Exp $
*/ */
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
@ -79,7 +79,7 @@ cfs_read(int f, void *b, unsigned int l)
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
int int
cfs_write(int f, void *b, unsigned int l) cfs_write(int f, const void *b, unsigned int l)
{ {
return write(f, b, l); return write(f, b, l);
} }