Skip to content
This repository has been archived by the owner on Jun 7, 2021. It is now read-only.

Commit

Permalink
fix all similar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SuJinpei committed Jun 20, 2017
1 parent abef303 commit 604879b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/conn/odb/src/odb.c
Original file line number Diff line number Diff line change
Expand Up @@ -11076,7 +11076,7 @@ static void Odiff(int eid)
}

/* Calculate rowset if buffer size is set */
if (etab[eid].rbs)
if ( etab[eid].rbs )
{
etab[eid].r = etab[eid].rbs / etab[eid].s;
etab[eid].r = etab[eid].r < 1 ? 1 : etab[eid].r; // at least one record at a time
Expand Down

0 comments on commit 604879b

Please sign in to comment.