Skip to content

Commit

Permalink
Fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tewk committed Mar 30, 2012
1 parent f777020 commit a37cfa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/racket/src/place.c
Expand Up @@ -3129,7 +3129,7 @@ static void cleanup_msg_memmory(void *thread) {
static Scheme_Object *scheme_place_async_try_receive(Scheme_Place_Async_Channel *ch) {
Scheme_Object *msg = NULL;
Scheme_Thread *p = scheme_current_thread;
GC_CAN_IGNORE void **msg_memory;
GC_CAN_IGNORE void *msg_memory;
BEGIN_ESCAPEABLE(cleanup_msg_memmory, p);
msg = scheme_place_async_try_receive_raw(ch, &msg_memory);
if (msg) {
Expand Down

0 comments on commit a37cfa4

Please sign in to comment.