aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rwxr-xr-xbootstrap1
m---------grecs0
-rw-r--r--src/pies.c3
4 files changed, 2 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index f7b417d..4242bd6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,5 +25,6 @@ config.status
25configure 25configure
26core 26core
27gnu 27gnu
28gnulib
28m4 29m4
29stamp-h1 30stamp-h1
diff --git a/bootstrap b/bootstrap
index 46a0964..b790192 100755
--- a/bootstrap
+++ b/bootstrap
@@ -104,7 +104,6 @@ tests_base=tests
104# Extra files from gnulib, which override files from other sources. 104# Extra files from gnulib, which override files from other sources.
105gnulib_extra_files=" 105gnulib_extra_files="
106 $build_aux/install-sh 106 $build_aux/install-sh
107 $build_aux/missing
108 $build_aux/mdate-sh 107 $build_aux/mdate-sh
109 $build_aux/texinfo.tex 108 $build_aux/texinfo.tex
110 $build_aux/depcomp 109 $build_aux/depcomp
diff --git a/grecs b/grecs
Subproject 5596f7cdcdc1983021185c5e0900d5fcba7f328 Subproject fa0d6d088a1fe22b178ef2565351f15622a1d6d
diff --git a/src/pies.c b/src/pies.c
index 2767d0a..71faf91 100644
--- a/src/pies.c
+++ b/src/pies.c
@@ -585,7 +585,6 @@ _cb_env (enum grecs_callback_command cmd,
585 grecs_locus_t *locus, 585 grecs_locus_t *locus,
586 void *varptr, grecs_value_t *value, void *cb_data) 586 void *varptr, grecs_value_t *value, void *cb_data)
587{ 587{
588 int argc;
589 char **argv; 588 char **argv;
590 char ***penv = varptr; 589 char ***penv = varptr;
591 struct wordsplit ws; 590 struct wordsplit ws;
@@ -598,8 +597,8 @@ _cb_env (enum grecs_callback_command cmd,
598 grecs_error (locus, 0, "wordsplit: %s", strerror (errno)); 597 grecs_error (locus, 0, "wordsplit: %s", strerror (errno));
599 return 1; 598 return 1;
600 } 599 }
601 argc = ws.ws_wordc;
602 argv = ws.ws_wordv; 600 argv = ws.ws_wordv;
601 ws.ws_wordc = 0;
603 ws.ws_wordv = NULL; 602 ws.ws_wordv = NULL;
604 break; 603 break;
605 604

Return to:

Send suggestions and report system problems to the System administrator.