diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-03-26 21:38:48 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-03-26 21:38:48 +0200 |
commit | 389a62c56e6a09a5e3348aa46b52288a533c653e (patch) | |
tree | 3ce0524a160c0b8bef3296f0e704bb85a0b1352a /io.c | |
parent | 2981962139f8a726f5568d8ab1004e078214cea3 (diff) | |
parent | 15635ff21b6f1a0951f0ff5de6ddaf0edab8edd7 (diff) | |
download | egawk-389a62c56e6a09a5e3348aa46b52288a533c653e.tar.gz egawk-389a62c56e6a09a5e3348aa46b52288a533c653e.tar.bz2 egawk-389a62c56e6a09a5e3348aa46b52288a533c653e.zip |
Merge branch 'xgawk' into xgawk-build
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2345,7 +2345,7 @@ init_awkpath(path_info *pi) pi->max_pathlen = 0; if ((path = getenv(pi->envname)) == NULL || *path == '\0') - path = *(pi->dfltp); + path = pi->dfltp[0]; max_path = INC_PATH; emalloc(pi->awkpath, char **, (max_path + 1) * sizeof(char *), "init_awkpath"); |