Skip to content
Snippets Groups Projects
  1. Nov 10, 2018
  2. 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
  3. Oct 09, 2018
  4. Oct 03, 2018
  5. Sep 27, 2018
    • Beat Küng's avatar
      posix shell: use /bin/sh instead of bash · b972651a
      Beat Küng authored
      This uses the systems default shell:
      - Ubuntu: dash
      - Fedora: bash
      
      Since bash is invoked via /bin/sh, it operates in POSIX mode:
        https://tiswww.case.edu/php/chet/bash/POSIX
      
      - remove '# Ignore the expand_aliases command in zshell.'
        Not needed because the shell operates in POSIX mode
      - [[ is bashism -> use [
      - autostart_files=( $autostart_file_match )
        is not supported in dash, so use 'ls'
      - shellcheck runs the dash flavor, since dash is a minimalistic shell.
      
      Tested on dash & bash.
      b972651a
  6. Sep 26, 2018
  7. Sep 18, 2018
  8. Sep 16, 2018
  9. Sep 14, 2018
  10. Sep 04, 2018
  11. Aug 31, 2018
  12. Aug 30, 2018
  13. Aug 29, 2018
  14. Aug 25, 2018
  15. Aug 15, 2018
  16. Aug 14, 2018
  17. Aug 13, 2018
  18. Aug 08, 2018
Loading