diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-05-06 21:37:03 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-05-06 21:37:03 +0000 |
commit | 77dfff5a5524e0a9d3ae54d8bb61d3c01e6082bb (patch) | |
tree | a3c16f138d63e4010fc08fb25db00aa4704da86a /firmware/target/arm/tcc780x | |
parent | 54548df56e36f870f0870a87dc6b9350836859bf (diff) |
Fix some more snprintf related warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25853 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/tcc780x')
-rw-r--r-- | firmware/target/arm/tcc780x/debug-tcc780x.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/target/arm/tcc780x/debug-tcc780x.c b/firmware/target/arm/tcc780x/debug-tcc780x.c index 11d6d2acab..3afc5fafab 100644 --- a/firmware/target/arm/tcc780x/debug-tcc780x.c +++ b/firmware/target/arm/tcc780x/debug-tcc780x.c @@ -19,11 +19,12 @@ * ****************************************************************************/ +#include <stdbool.h> +#include <stdio.h> #include "config.h" #include "cpu.h" #include "system.h" #include "string.h" -#include <stdbool.h> #include "button.h" #include "lcd.h" #include "font.h" |