aboutsummaryrefslogtreecommitdiffstats
path: root/cmd.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-07-07 15:42:48 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-07-07 15:42:48 +0300
commit4cd70811e7e335fe568f62c564ac2bef0515694f (patch)
tree18c56e091b3ffd276d8c64b7cb9f4615ba86dfc0 /cmd.h
parent6f10e610abfc6cdd68147ad817edd50440ed38ab (diff)
downloadegawk-4cd70811e7e335fe568f62c564ac2bef0515694f.tar.gz
egawk-4cd70811e7e335fe568f62c564ac2bef0515694f.tar.bz2
egawk-4cd70811e7e335fe568f62c564ac2bef0515694f.zip
Fix GCC 7.1 warnings (incrementing/decrementing booleans).
Diffstat (limited to 'cmd.h')
-rw-r--r--cmd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd.h b/cmd.h
index 11844157..f663586c 100644
--- a/cmd.h
+++ b/cmd.h
@@ -36,7 +36,7 @@ extern NODE *get_function(void);
extern int gprintf(FILE *fp, const char *format, ...);
extern jmp_buf pager_quit_tag;
-extern bool pager_quit_tag_valid;
+extern int pager_quit_tag_valid;
extern bool output_is_tty;
extern int input_fd;