-
-
Notifications
You must be signed in to change notification settings - Fork 386
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
compiler error #495
Comments
There are not boolean values in C, Please post the error. |
Here is the compiler error message. PyLong_Check returns third_party/py/pygit2/src/diff.c:485:29: error: comparison of constant 0 On Fri, Feb 20, 2015 at 3:52 AM, J. David Ibáñez [email protected]
|
Good catch, should be fixed with latest commit. |
When I compile src/diff.c I get an error for the following code in Diff_getitem:
Apparently PyLong_Check returns a boolean, which can never be negative,
so the test will never succeed.
The text was updated successfully, but these errors were encountered: