From d1bbb893892c60bf5a5c6d8e6b1c88e40609b4b6 Mon Sep 17 00:00:00 2001 From: axel Date: Tue, 1 Aug 2006 02:55:11 +1000 Subject: Move over a few more objects to the new array_list functions darcs-hash:20060731165511-ac50b-7858829e6a612e0c737d82d3d71d6833dc97f078.gz --- proc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'proc.c') diff --git a/proc.c b/proc.c index bf6cbfdf..e622a607 100644 --- a/proc.c +++ b/proc.c @@ -1092,7 +1092,7 @@ void proc_sanity_check() void proc_push_interactive( int value ) { int old = is_interactive; - al_push( interactive_stack, (void *)(long)is_interactive ); + al_push_long( interactive_stack, (long)is_interactive ); is_interactive = value; if( old != value ) signal_set_handlers(); @@ -1101,7 +1101,7 @@ void proc_push_interactive( int value ) void proc_pop_interactive() { int old = is_interactive; - is_interactive= (int)(long)al_pop(interactive_stack); + is_interactive= (int)al_pop_long(interactive_stack); if( is_interactive != old ) signal_set_handlers(); } -- cgit v1.2.3