Skip to content
Snippets Groups Projects
Commit f9876ccf authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

add guideline comment about not using '%i' with scanf

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5501 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent fd4dbd6c
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,10 @@ Try to match the existing formatting of the file you are working on.
Functions and variables that are not intended to be global must be
declared static.
When reading integer numeric input with scanf (or variants), do _NOT_ use '%i'
unless specifically want to allow non-base-10 input; '%d' is always a better
choice, since it will not silently turn numbers with leading zeros into base-8.
Roughly, Asterisk coding guidelines are generally equivalent to the
following:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment