Removed left-over debug printouts

This commit is contained in:
adamdunkels 2008-01-24 23:07:05 +00:00
parent 49ac5f9026
commit eced8a3ec2
1 changed files with 1 additions and 6 deletions

View File

@ -30,7 +30,7 @@
*
* Author: Adam Dunkels <adam@sics.se>
*
* $Id: cfs-ram.c,v 1.7 2008/01/24 13:08:35 adamdunkels Exp $
* $Id: cfs-ram.c,v 1.8 2008/01/24 23:07:05 adamdunkels Exp $
*/
#include <string.h>
@ -86,8 +86,6 @@ cfs_close(int f)
int
cfs_read(int f, void *buf, unsigned int len)
{
printf("read file.fileptr %d len %d filesize %d\n",
file.fileptr, len, file.filesize);
if(file.fileptr + len > sizeof(filemem)) {
len = sizeof(filemem) - file.fileptr;
}
@ -108,9 +106,6 @@ cfs_read(int f, void *buf, unsigned int len)
int
cfs_write(int f, const void *buf, unsigned int len)
{
printf("write file.fileptr %d len %d filesize %d\n",
file.fileptr, len, file.filesize);
if(file.fileptr >= sizeof(filemem)) {
return 0;
}