Browse Source

Fix compiler warnings on Teensy 2.0

main
PaulStoffregen 5 years ago
parent
commit
6616cd9478
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      teensy/malloc.c

+ 1
- 1
teensy/malloc.c View File

@@ -73,7 +73,7 @@ struct __freelist *__flp; // freelist pointer (head of freelist)
void *
malloc(size_t len)
{
struct __freelist *fp1, *fp2, *sfp1, *sfp2;
struct __freelist *fp1, *fp2, *sfp1=NULL, *sfp2=NULL;
char *cp;
size_t s, avail;


Loading…
Cancel
Save