diff options
| author | Evan Lojewski <github@meklort.com> | 2020-01-30 22:00:25 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-30 22:00:25 -0700 |
| commit | a17825de6b35ab27f09b3fcaa001343a02307c86 (patch) | |
| tree | e44252bb5a578fc852dfcfbe9fcb9f6bfcc6c83e /libs/printf | |
| parent | aecdf67609cb4c81c015ecc95fad7210ac2acad9 (diff) | |
| download | bcm5719-ortega-a17825de6b35ab27f09b3fcaa001343a02307c86.tar.gz bcm5719-ortega-a17825de6b35ab27f09b3fcaa001343a02307c86.zip | |
format: Re-run clang-format to clean up various files. (#21)
Diffstat (limited to 'libs/printf')
| -rw-r--r-- | libs/printf/em100_putchar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/printf/em100_putchar.c b/libs/printf/em100_putchar.c index b16f250..a898708 100644 --- a/libs/printf/em100_putchar.c +++ b/libs/printf/em100_putchar.c @@ -42,18 +42,18 @@ /// @endcond //////////////////////////////////////////////////////////////////////////////// -#include <printf.h> #include <EM100.h> +#include <printf.h> void em100_putchar(char character) { NVRam_EM100_putchar(character); } -void em100_puts(const char* string) +void em100_puts(const char *string) { - while(*string != 0) + while (*string != 0) { NVRam_EM100_putchar(*string); string++; |

