aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wordsplit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wordsplit.c b/src/wordsplit.c
index b38dde4..d01fd43 100644
--- a/src/wordsplit.c
+++ b/src/wordsplit.c
@@ -115,7 +115,7 @@ _wsplt_store_errctx (struct wordsplit *wsp, char const *str, size_t len)
if (!wsp->ws_errctx)
{
wsp->ws_error ("%s",
- _("memory exhausted while trying to store error subject"));
+ _("memory exhausted while trying to store error context"));
}
else
{
@@ -1185,7 +1185,7 @@ wsplt_assign_var (struct wordsplit *wsp, const char *name, size_t namelen,
strcpy(v + namelen, value);
wsp->ws_env[wsp->ws_envidx++] = v;
}
- wsp->ws_env[wsp->ws_envidx++] = NULL;
+ wsp->ws_env[wsp->ws_envidx] = NULL;
return WRDSE_OK;
}

Return to:

Send suggestions and report system problems to the System administrator.