Skip to content

Commit

Permalink
TEST-1003: turned compiler strictness up
Browse files Browse the repository at this point in the history
All tests pass.
  • Loading branch information
DamonHD committed Nov 11, 2016
1 parent 066a5e9 commit 915684e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Arduino/V0p2_Main/UI_Minimal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ void pollCLI(const uint8_t maxSCT, const bool startOfMinute, const OTV0P2BASE::S
// (Note that command content and timing may be useful to fold into PRNG entropy pool.)
// A static buffer generates better code but permanently consumes previous SRAM.
const uint8_t n = OTV0P2BASE::CLI::promptAndReadCommandLine(maxSCT, s, [](){pollIO();});
const char *buf = (char *)s.buf;
char *buf = (char *)s.buf;
const uint8_t bufsize = s.bufsize;

if(n > 0)
Expand Down

0 comments on commit 915684e

Please sign in to comment.