Removed left-over debug printouts
This commit is contained in:
parent
49ac5f9026
commit
eced8a3ec2
1 changed files with 1 additions and 6 deletions
|
@ -30,7 +30,7 @@
|
||||||
*
|
*
|
||||||
* Author: Adam Dunkels <adam@sics.se>
|
* 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>
|
#include <string.h>
|
||||||
|
@ -86,8 +86,6 @@ cfs_close(int f)
|
||||||
int
|
int
|
||||||
cfs_read(int f, void *buf, unsigned int len)
|
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)) {
|
if(file.fileptr + len > sizeof(filemem)) {
|
||||||
len = sizeof(filemem) - file.fileptr;
|
len = sizeof(filemem) - file.fileptr;
|
||||||
}
|
}
|
||||||
|
@ -108,9 +106,6 @@ cfs_read(int f, void *buf, unsigned int len)
|
||||||
int
|
int
|
||||||
cfs_write(int f, const void *buf, unsigned int len)
|
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)) {
|
if(file.fileptr >= sizeof(filemem)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue