Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix verbose of check_clocks for 32 bit systems #35

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Mar 9, 2023

  1. Fix verbose of check_clocks for 32 bit systems

    On 32 bit systems uint64_t is long long unsigned int and thus
    requires %llu in printf to prevent garbled output. Use
    PRIu64/PRId64 to handle this correctly for both 32 bit and
    64 bit systems.
    
    Signed-off-by: Florian Kauer <florian.kauer@linutronix.de>
    koalo committed Mar 9, 2023
    Configuration menu
    Copy the full SHA
    b35b0a9 View commit details
    Browse the repository at this point in the history
  2. Remove unused err variable

    Signed-off-by: Florian Kauer <florian.kauer@linutronix.de>
    koalo committed Mar 9, 2023
    Configuration menu
    Copy the full SHA
    945aa49 View commit details
    Browse the repository at this point in the history