diff options
author | andrewc <andrewchamberss@gmail.com> | 2016-02-05 17:32:18 +1300 |
---|---|---|
committer | Andrew Chambers <andrewchamberss@gmail.com> | 2016-02-05 18:55:59 +1300 |
commit | e506b713ad0766bf7eb182325cba64fd6931c1cc (patch) | |
tree | 227c69546e86f113c301605f511833691477eb89 /mbld | |
parent | 4fd76bb3f5d16488d7b50a5ef1b7674537889e06 (diff) | |
download | mc-e506b713ad0766bf7eb182325cba64fd6931c1cc.tar.gz |
change slgrow to take a pointer
Diffstat (limited to 'mbld')
-rw-r--r-- | mbld/deps.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbld/deps.myr b/mbld/deps.myr index 5aea6db..7725a79 100644 --- a/mbld/deps.myr +++ b/mbld/deps.myr @@ -173,7 +173,7 @@ const srcdeps = {b, ds, g, path, obj, usefile addusedep(b, ds, g, path, l, lnum) ;; ;; - ds.depstk = std.slgrow(ds.depstk, ds.depstk.len - 1) + std.slgrow(&ds.depstk, ds.depstk.len - 1) std.htput(g.seen, path, false) std.htput(g.done, path, true) } |