Replace NULL with nullptr in c bindings

This commit is contained in:
sfc-gh-tclinkenbeard 2020-08-18 14:37:12 -07:00
parent 962bd00f62
commit 8f5eab2629
1 changed files with 1 additions and 1 deletions

View File

@ -596,7 +596,7 @@ fdb_error_t fdb_transaction_set_option_impl( FDBTransaction* tr,
void fdb_transaction_set_option_v13( FDBTransaction* tr,
FDBTransactionOption option )
{
fdb_transaction_set_option_impl( tr, option, NULL, 0 );
fdb_transaction_set_option_impl( tr, option, nullptr, 0 );
}
extern "C" DLLEXPORT