mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
Remove unnecessary typecast
This commit is contained in:
parent
38b960136d
commit
0fda9b22c7
1 changed files with 1 additions and 1 deletions
|
@ -709,7 +709,7 @@ static void performOp(TunnelLogger * logger, ref<Store> store,
|
|||
logger->startWork();
|
||||
|
||||
// FIXME: race if addToStore doesn't read source?
|
||||
store.cast<Store>()->addToStore(info, *source, (RepairFlag) repair,
|
||||
store->addToStore(info, *source, (RepairFlag) repair,
|
||||
dontCheckSigs ? NoCheckSigs : CheckSigs, nullptr);
|
||||
|
||||
logger->stopWork();
|
||||
|
|
Loading…
Reference in a new issue