michaeldickens / Typing

https://github.com/michaeldickens/Typing
69 stars 18 forks source link

Uninitialized part #3 #6

Closed FrankDMartinez closed 12 years ago

FrankDMartinez commented 12 years ago

I notice, in the function runCJAlgorithm() in cjalgorithm.c, the variable finish might not be initialized. What would You suggest as a sensible default?

michaeldickens commented 12 years ago

finish always gets set before it is used, so it doesn't really matter. 0 should work fine.

On 7/20/12 12:07 PM, xuinkrbin wrote:

I notice, in the function runCJAlgorithm() in cjalgorithm.c, the variable finish might not be initialized. What would You suggest as a sensible default?


Reply to this email directly or view it on GitHub: https://github.com/MTGandP/Typing/issues/6

FrankDMartinez commented 12 years ago

Okay, great. Thanks.