We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Please review the attached patch, which removes a duplicate statement in a for loop in file src/profio.c.
Probably this was a copy&paste issue.
Best regards and many thanks
Martin Ettl
diff --git a/src/profio.c b/src/profio.c index 6cae414..87fc175 100755 --- a/src/profio.c +++ b/src/profio.c @@ -60,7 +60,7 @@ static void acaller(char *caller, char *file, int x, int y, in q->y = y; q->count = 0; for (r = &callee->callers; *r && (strcmp(q->name, (*r)->name) > - || strcmp(q->file, (*r)->file) > 0 || q->y > (*r)->y || + || strcmp(q->file, (*r)->file) > 0 || q->y > (*r)->y); r ; q->link = *r; *r = q;
The text was updated successfully, but these errors were encountered:
Fixed. Thanks.
Sorry, something went wrong.
No branches or pull requests
Please review the attached patch, which removes a duplicate statement in a for loop in file src/profio.c.
Probably this was a copy&paste issue.
Best regards and many thanks
Martin Ettl
The text was updated successfully, but these errors were encountered: