Skip to content
Snippets Groups Projects
  1. Dec 22, 2018
  2. Nov 29, 2018
  3. Nov 06, 2018
  4. Oct 27, 2018
    • Mara Bos's avatar
      Fix many format strings. · 10c20b38
      Mara Bos authored
      Fixes these invalid format strings:
      - A `%d` for a pointer (replaced it by `%p`)
      - A 0x%08x (and a 0x%0x8!) for a pointer (replaced by %p)
      - 2 cases of `%d` for a `ssize_t` (replaced it by `%zi`)
      - 1 case of a %u for an `int` (replaced by %i)
      - 3 cases of %d for a `long` (replaced by %ld)
      - 19 cases of `%d`, `%i`, `%u` or `%lu` for a `size_t` (replaced it by `%zu`)
      - An unused formatting argument (removed it)
      - A missing `%d` (added it)
      - A missing `%s` (added it)
      - 2 cases of `%llu` for a `uint64_t` (replaced it by `"%" PRIu64`)
      - 6 cases of giving a string directly as format string (replaced it by `("%s", string)`)
      - 2 cases of %*-s, which should probably have been %-*s.
        (Looks like NuttX accepts (the invalid) %*-s, but other platforms don't.)
      - A %04x for a `uint32_t` (replaced by "%04" PRIx32)
      10c20b38
  5. Jul 01, 2018
  6. Apr 30, 2018
  7. Apr 16, 2018
  8. Nov 24, 2017
  9. Oct 27, 2017
  10. Jul 08, 2017
  11. Jun 03, 2017
  12. May 27, 2017
  13. May 03, 2017
  14. Apr 24, 2017
  15. Apr 06, 2017
  16. Feb 02, 2017
  17. Feb 01, 2017
  18. Sep 30, 2016
  19. Aug 05, 2016
  20. Jul 16, 2016
    • Julian Oes's avatar
      RPi: just use RPI instead of RPI2. · fa614a3c
      Julian Oes authored
      The reason for this change is that RPi2 and RPi3 are compatible, and
      hopefully all differences coming up can be resolved without ifdefs but
      at runtime.
      fa614a3c
  21. Jul 07, 2016
  22. Jun 22, 2016
  23. May 09, 2016
  24. May 05, 2016
  25. Apr 30, 2016
  26. Apr 24, 2016
  27. Apr 10, 2016
  28. Apr 09, 2016
  29. Apr 06, 2016
Loading