X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftemporary.c;h=840e5d2b4e73941b95242b5b1b65c7087dea974a;hb=e210b20bf6f405637c8c03dd280b5a4a627191b8;hp=f277152e8f00beb6159a8d8605eecf7dbcc6848b;hpb=4de79b34b329d1da6cdeb145993d3efd911e2967;p=pspp diff --git a/src/temporary.c b/src/temporary.c index f277152e8f..840e5d2b4e 100644 --- a/src/temporary.c +++ b/src/temporary.c @@ -24,7 +24,7 @@ #include "alloc.h" #include "command.h" #include "dictionary.h" -#include "do-ifP.h" +#include "ctl-stack.h" #include "error.h" #include "hash.h" #include "lexer.h" @@ -37,14 +37,14 @@ int temporary; struct dictionary *temp_dict; -int temp_trns; +size_t temp_trns; /* Parses the TEMPORARY command. */ int cmd_temporary (void) { /* TEMPORARY is not allowed inside DO IF or LOOP. */ - if (ctl_stack) + if (!ctl_stack_is_empty ()) { msg (SE, _("This command is not valid inside DO IF or LOOP.")); return CMD_FAILURE;