misc: Typos etc
authorMichel Pollet <buserror@gmail.com>
Tue, 31 Aug 2010 10:30:49 +0000 (11:30 +0100)
committerMichel Pollet <buserror@gmail.com>
Tue, 31 Aug 2010 10:30:49 +0000 (11:30 +0100)
Makefile now uses $(CC) so it works with clang static analyzer.

Signed-off-by: Michel Pollet <buserror@gmail.com>
Makefile.common
simavr/sim/sim_regbit.h

index 182c432..91000cb 100644 (file)
@@ -71,7 +71,7 @@ endif
 OBJ = obj
 
 ${OBJ}/%.o: %.c
-       @gcc $(CFLAGS) -MD \
+       @$(CC) $(CFLAGS) -MD \
                $<  -c -o $@
        @echo CC $<
 
index 02d840a..1f74197 100644 (file)
@@ -41,7 +41,7 @@ typedef struct avr_regbit_t {
 /*
  * These accessors are inlined and are used to perform the operations on
  * avr_regbit_t definitions. This is the "official" way to access bits into registers
- * The small footorint costs brings much better versatility for functions/bits that are
+ * The small footprint costs brings much better versatility for functions/bits that are
  * not always defined in the same place on real AVR cores
  */
 /*