diff options
author | rsc <devnull@localhost> | 2005-12-29 21:39:51 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-12-29 21:39:51 +0000 |
commit | adeb5ac9eb03ba6da8f8c175fbaf3621523e2837 (patch) | |
tree | b038147ee5c70fe8c279ebabb77c23a7cd329450 /src/lib9 | |
parent | 826babae952e7d959ce2c83db681d667172dace6 (diff) | |
download | plan9port-adeb5ac9eb03ba6da8f8c175fbaf3621523e2837.tar.gz plan9port-adeb5ac9eb03ba6da8f8c175fbaf3621523e2837.tar.bz2 plan9port-adeb5ac9eb03ba6da8f8c175fbaf3621523e2837.zip |
correct array size (Marco Gaddoni)
Diffstat (limited to 'src/lib9')
-rw-r--r-- | src/lib9/convD2M.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib9/convD2M.c b/src/lib9/convD2M.c index 1f13e23f..bd8a30b6 100644 --- a/src/lib9/convD2M.c +++ b/src/lib9/convD2M.c @@ -40,7 +40,7 @@ convD2Mu(Dir *d, uchar *buf, uint nbuf, int dotu) { uchar *p, *ebuf; char *sv[5]; - int i, ns, nsv[4], ss, nstr, fixlen; + int i, ns, nsv[5], ss, nstr, fixlen; if(nbuf < BIT16SZ) return 0; |