Skip to content

Commit

Permalink
Fix one lint warning. (#825)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtv committed Apr 29, 2024
1 parent 0b033cb commit aba7b67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blob.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ std::size_t pqxx::blob::append_to_buf(
{
auto here{reinterpret_cast<char *>(std::data(buf) + org_size)};
auto chunk{static_cast<std::size_t>(
lo_read(b.raw_conn(b.m_conn), b.m_fd, here, append_max))};
lo_read(raw_conn(b.m_conn), b.m_fd, here, append_max))};
buf.resize(org_size + chunk);
return chunk;
}
Expand Down

0 comments on commit aba7b67

Please sign in to comment.