Skip to content

Commit

Permalink
Merge pull request #92 from zwoop/ExtraParenthesis
Browse files Browse the repository at this point in the history
Removes superflous parenthesis
  • Loading branch information
hawk259 authored Nov 12, 2018
2 parents c829c7d + c8f11ed commit 6bbf2d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/mdbm.c
Original file line number Diff line number Diff line change
Expand Up @@ -9006,7 +9006,7 @@ mdbm_validate_r(MDBM* db, MDBM_ITER* iter)
} else if (v.dsize != val.dsize || memcmp(v.dptr,val.dptr,v.dsize)) {
datum k = key;
if (mdbm_store_r(db,&k,&v,MDBM_REPLACE|MDBM_CLEAN|MDBM_CACHE_ONLY,iter) < 0
&& errno != ENOMEM && errno != EINVAL))
&& errno != ENOMEM && errno != EINVAL)
{
mdbm_logerror(LOG_ERR,0,"mdbm backing store cache refill error");
ret = -1;
Expand Down

0 comments on commit 6bbf2d4

Please sign in to comment.