Skip to content
Snippets Groups Projects
  1. Sep 04, 2016
    • Lorenz Meier's avatar
      Better error reporting for sdlog2 · 8c49372e
      Lorenz Meier authored
      8c49372e
    • Carlo Wood's avatar
      printf format fixes. (#5444) · cc69dd56
      Carlo Wood authored
      After I got a compiler warning for a printf format in this file
      (which I cannot reproduce anymore; for some reason g++ is usually
      quite happy with all the errors in this file), I fixed all 'printf'
      formats to match the type of their arguments as follows:
      
      uint8_t         : %hhu
      uint16_t        : %hu (or %hx)
      uint32_t        : %u (or %x)
      int16_t         : %hd
      int and int32_t : %d
      long int        : %ld
      
      Since this file is C++, what we REALLY should be using is
      ostream operator<<'s of course (type safe by design and faster
      (compile time type matching, no need for format decoding)).
      cc69dd56
  2. Sep 03, 2016
  3. Sep 02, 2016
  4. Sep 01, 2016
  5. Aug 31, 2016
  6. Aug 30, 2016
  7. Aug 29, 2016
  8. Aug 28, 2016
  9. Aug 27, 2016
  10. Aug 26, 2016
Loading