Avoid longjump/vfork warning about line_saved_in_history variable by
authorBruce Momjian
Mon, 5 Jun 2006 14:47:38 +0000 (14:47 +0000)
committerBruce Momjian
Mon, 5 Jun 2006 14:47:38 +0000 (14:47 +0000)
making it volatile.

src/bin/psql/mainloop.c

index 5bffed86711e0847583db065d5458bc5f9291027..d7f17f4b6ae40b27942daa57c6493a46ec1840ef 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 2000-2006, PostgreSQL Global Development Group
  *
- * $PostgreSQL: pgsql/src/bin/psql/mainloop.c,v 1.76 2006/06/05 03:55:00 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/mainloop.c,v 1.77 2006/06/05 14:47:38 momjian Exp $
  */
 #include "postgres_fe.h"
 #include "mainloop.h"
@@ -41,8 +41,8 @@ MainLoop(FILE *source)
    char       *line;           /* current line of input */
    int         added_nl_pos;
    bool        success;
-   bool        line_saved_in_history;
-   
+
+   volatile bool       line_saved_in_history;
    volatile int successResult = EXIT_SUCCESS;
    volatile backslashResult slashCmdStatus = PSQL_CMD_UNKNOWN;
    volatile promptStatus_t prompt_status = PROMPT_READY;