diff options
| author | Oliver Kiddle <okiddle@yahoo.co.uk> | 2019-05-20 00:14:01 +0200 |
|---|---|---|
| committer | Oliver Kiddle <okiddle@yahoo.co.uk> | 2019-05-20 00:14:01 +0200 |
| commit | 3de2333b0821a1aaeb3ef98046212b5bf22b596c (patch) | |
| tree | f478c8717660f288a32e883d8da268c23cc5434f /Src/init.c | |
| parent | 44308: update Linux modutils completion (diff) | |
| download | zsh-3de2333b0821a1aaeb3ef98046212b5bf22b596c.tar zsh-3de2333b0821a1aaeb3ef98046212b5bf22b596c.tar.gz zsh-3de2333b0821a1aaeb3ef98046212b5bf22b596c.tar.bz2 zsh-3de2333b0821a1aaeb3ef98046212b5bf22b596c.tar.lz zsh-3de2333b0821a1aaeb3ef98046212b5bf22b596c.tar.xz zsh-3de2333b0821a1aaeb3ef98046212b5bf22b596c.tar.zst zsh-3de2333b0821a1aaeb3ef98046212b5bf22b596c.zip | |
44307: allow for atoi() returning a negative number
Diffstat (limited to 'Src/init.c')
| -rw-r--r-- | Src/init.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Src/init.c b/Src/init.c index 2d5c3296d..445cd3937 100644 --- a/Src/init.c +++ b/Src/init.c @@ -45,7 +45,10 @@ int noexitct = 0; char *zunderscore; /**/ -int underscorelen, underscoreused; +size_t underscorelen; + +/**/ +int underscoreused; /* what level of sourcing we are at */ |
