-
Notifications
You must be signed in to change notification settings - Fork 1
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
bf_sim.c has two differing #defines of BOXFULL #8
Comments
Added an #ifdef #undef to clear the warning in bf_sim.c |
David, Most of your programming questions are out of my expertise. I can answer general questions about how the system is supposed to function, or I can come and help you do actual testing, but I always left the specifics to Ravi. As far as I know he will still answer any of your questions by email. [email protected] If you don’t get any response from him, let me know and I will reach out to him. Jim From: David Ohlemacher bf_sim.c:25 includes co.h The latter trumps. BOXFULL is also defined and used by alc.c. Could BOXFULL be removed from co.h? — |
I thought Ravi would be joining us on github but that is ok. The bugs in github are just things to address in the future plus some context. They are also areas that might cause issues and so should be tracked. I thought I was done with recompiling and then found I had skipped over src/sys which is huge. I am working through it...up to the o's. There are no longer any warnings, 1000s have been fixed. Warning should never be ignored and should not be allowed to remain in production code. Even benign ones are bad as they tend to hide new ones that crop up.....seeing trees in a forest. Including the required headers has made errors appear. I am fixing as quick as I can type. Everything is going into git. David On Monday, February 17, 2014 1:22 PM, unixtech493 [email protected] wrote: David, Most of your programming questions are out of my expertise. I can answer general questions about how the system is supposed to function, or I can come and help you do actual testing, but I always left the specifics to Ravi. As far as I know he will still answer any of your questions by email. [email protected] If you don’t get any response from him, let me know and I will reach out to him. Jim From: David Ohlemacher bf_sim.c:25 includes co.h The latter trumps. BOXFULL is also defined and used by alc.c. Could BOXFULL be removed from co.h? — |
bf_sim.c:25 includes co.h
co.h:3 #define BOXFULL
bf_sim.c:40 #define BOXFULL 0x0008
The latter trumps.
BOXFULL is also defined and used by alc.c.
Could BOXFULL be removed from co.h?
The text was updated successfully, but these errors were encountered: