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
The value written to &oldfree (sds.c, line 1240) is never used.
if (type != SDS_TYPE_5) { test_cond("sdsMakeRoomFor() free", sdsavail(x) >= step); oldfree = sdsavail(x); }
One way to correct this error is to reverse the order of lines 1239 and 1240 and replace sdsavail (x)> = step with oldfree> = step.
sdsavail (x)> = step
oldfree> = step
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The value written to &oldfree (sds.c, line 1240) is never used.
One way to correct this error is to reverse the order of lines 1239 and 1240 and replace
sdsavail (x)> = step
witholdfree> = step
.The text was updated successfully, but these errors were encountered: