-
Notifications
You must be signed in to change notification settings - Fork 61
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
Wrong formatting / argument type in log traces generate warnings #150
Comments
I have a correction ready to be pushed on freshly created branch called "150". Unfortunately, I don't have to right to push to the repo... Would it be a possibility to get the rights ? |
Hi @guillaumeVolery , Thank you so much for reporting the issue. That would be great if you want to contribute.
If the changes are in your branch, you should be able to create a PR to the main branch. Can you please let me know what issue you are facing. |
Hi @moninom1 Thank you for your reply. This is actually my problem:
I cannot push my new branch on the remote. |
You need to create a fork of the repo and then push the changes to your branch in your forked repo. After that you will be able to create a PR to main branch. Please check the following steps : 1: Fork the FreeRTOS-Cellular-Interface repo Let me know if this works. |
PR #154 is merged. We will close this issue. Feel free to reopen this issue if any further problem. |
Problem
By building the library with arm-none-eabi-gcc compiler and setting the flag -Werror, the library is producing the following warnings (errors) due to the use of wrong format specifier in the log traces... We have the goal to deliver a warning-free software for our next firmware release.
PS: Thank for your job and for this library, you are awsome 👍
The correction is very simple, use %lu instead of %u, use %ld instead of %d.
Awaited result
New release of the library implementing the correction above and no more warning generated.
List of reported errors:
The text was updated successfully, but these errors were encountered: