diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2020-01-24 15:10:49 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-24 15:10:49 -0500 |
| commit | 5e32c5ea448563be91017d71bab060c8a6bd90fe (patch) | |
| tree | aa9e731b9f4b9f6bc28beab23e7575d43bc14653 /cli/ops/random.rs | |
| parent | 86726f88f1b6fd168fbd5b0d7e01b027cfc268ac (diff) | |
s/PinnedBuf/ZeroCopyBuf (#3782)
Diffstat (limited to 'cli/ops/random.rs')
| -rw-r--r-- | cli/ops/random.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops/random.rs b/cli/ops/random.rs index 334616211..950e9c7f0 100644 --- a/cli/ops/random.rs +++ b/cli/ops/random.rs @@ -16,7 +16,7 @@ pub fn init(i: &mut Isolate, s: &ThreadSafeState) { fn op_get_random_values( state: &ThreadSafeState, _args: Value, - zero_copy: Option<PinnedBuf>, + zero_copy: Option<ZeroCopyBuf>, ) -> Result<JsonOp, ErrBox> { assert!(zero_copy.is_some()); |
