Skip to content

Commit 1e674ff

Browse files
committed
choose a new arbitrary value
1 parent 2f0eb7a commit 1e674ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/comp/middle/trans_closure.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,11 @@ fn allocate_cbox(bcx: @block_ctxt,
229229
}
230230
ty::closure_send. {
231231
let (bcx, box) = alloc_in_heap(bcx, true, temp_cleanups);
232-
(bcx, box, 0xdeadc0de) // use arbitrary value for debugging
232+
(bcx, box, 0x12345678) // use arbitrary value for debugging
233233
}
234234
ty::closure_block. {
235235
let {bcx, val: box} = trans::alloc_ty(bcx, cbox_ty);
236-
(bcx, box, 0xdeadc0df) // use arbitrary value for debugging
236+
(bcx, box, 0x12345678) // use arbitrary value for debugging
237237
}
238238
};
239239

0 commit comments

Comments
 (0)