We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
[build] src/cellular/recorder.cpp: In member function ‘int Recorder::openLastSession(Deployment&, char*)’: [build] src/cellular/recorder.cpp:268:49: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 4 has type ‘uint32_t’ {aka ‘unsigned int’} [-Wformat=] [build] 268 | snprintf(p_name_buf, NAME_MAX, "%08lu", entry.session_idx); [build] | ~~~~^ ~~~~~~~~~~~~~~~~~ [build] | | | [build] | | uint32_t {aka unsigned int} [build] | long unsigned int [build] | %08u
Use https://en.cppreference.com/w/cpp/header/cinttypes
The text was updated successfully, but these errors were encountered:
ihagad
Successfully merging a pull request may close this issue.
Use https://en.cppreference.com/w/cpp/header/cinttypes
The text was updated successfully, but these errors were encountered: