diff options
author | dzwdz | 2022-08-04 23:06:57 +0200 |
---|---|---|
committer | dzwdz | 2022-08-04 23:06:57 +0200 |
commit | ce00d1677d7a419b427e7f11963eee982a55a231 (patch) | |
tree | 2662c3861226f6909b83d57ff8b6ac3b2ba5ec8d /src/user/bootstrap/tar.c | |
parent | 26dc784103914b9d6ba36e0a96fa4b3af977626f (diff) |
do some simple TODOs, organize the rest; general code maintainance
Diffstat (limited to 'src/user/bootstrap/tar.c')
-rw-r--r-- | src/user/bootstrap/tar.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/user/bootstrap/tar.c b/src/user/bootstrap/tar.c index 2025ed1..150a993 100644 --- a/src/user/bootstrap/tar.c +++ b/src/user/bootstrap/tar.c @@ -61,7 +61,8 @@ static void tar_read(struct fs_wait_response *res, void *base, size_t base_len) size_t meta_len; int size; - static char buf[BUF_SIZE]; // TODO reuse a single buffer + static char buf[BUF_SIZE]; + // TODO reuse a single buffer for both tar_driver and tar_read if (meta == root_fakemeta) type = '5'; /* see comment in tar_open() */ |